Spaces:
Sleeping
Sleeping
| import { defineConfig } from "vite"; | |
| import react from "@vitejs/plugin-react-swc"; | |
| import path from "path"; | |
| // https://vitejs.dev/config/ | |
| export default defineConfig(({ mode }) => ({ | |
| server: { | |
| host: "::", | |
| port: 8080, | |
| allowedHosts: ['f2d26f96a868.ngrok-free.app'], | |
| proxy: { | |
| '/api': { | |
| target: 'http://localhost:5000', | |
| changeOrigin: true, | |
| rewrite: (path) => path | |
| } | |
| } | |
| }, | |
| plugins: [ | |
| react(), | |
| ], | |
| resolve: { | |
| alias: { | |
| "@": path.resolve(__dirname, "./src"), | |
| }, | |
| }, | |
| optimizeDeps: { | |
| include: ['@splinetool/react-spline'] | |
| }, | |
| build: { | |
| rollupOptions: { | |
| external: [] | |
| } | |
| }, | |
| })); | |