aboutsummaryrefslogtreecommitdiff
path: root/front-end/vite.config.js
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2025-10-06 14:29:43 +0300
committerA Farzat <a@farzat.xyz>2025-10-06 14:29:43 +0300
commitcbed467589d74022c4a1b49167d237d85663ab96 (patch)
tree1bb33cb7314c416f68cd3726530f61192bfeb2ff /front-end/vite.config.js
parentc9205f0fc12a357a45b9ade1dd4077d4c37acd01 (diff)
downloadcsca5028-cbed467589d74022c4a1b49167d237d85663ab96.tar.gz
csca5028-cbed467589d74022c4a1b49167d237d85663ab96.zip
Add the front-end component
Diffstat (limited to 'front-end/vite.config.js')
-rw-r--r--front-end/vite.config.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/front-end/vite.config.js b/front-end/vite.config.js
new file mode 100644
index 0000000..8b0f57b
--- /dev/null
+++ b/front-end/vite.config.js
@@ -0,0 +1,7 @@
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
+
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [react()],
+})