summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/vite.config.ts
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-27 12:41:26 -0400
committerrealtradam <[email protected]>2024-06-27 12:41:26 -0400
commitc8be5658bae95b94198dc00bd206ba324d9404e0 (patch)
tree24563828d9f04a4e52c9187cff3c028434fd886c /react-frontend/vite.config.ts
parent8ec0664fe7cf4a34bc5fc1f162c053622a42dd41 (diff)
downloadgameHolster-c8be5658bae95b94198dc00bd206ba324d9404e0.tar.gz
gameHolster-c8be5658bae95b94198dc00bd206ba324d9404e0.zip
add frontend to repo
Diffstat (limited to 'react-frontend/vite.config.ts')
-rw-r--r--react-frontend/vite.config.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/react-frontend/vite.config.ts b/react-frontend/vite.config.ts
new file mode 100644
index 0000000..861b04b
--- /dev/null
+++ b/react-frontend/vite.config.ts
@@ -0,0 +1,7 @@
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react-swc'
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ plugins: [react()],
+})