import react from "@vitejs/plugin-react"; import path from "path"; import { defineConfig, loadEnv } from "vite"; // https://vitejs.dev/config/ export default defineConfig(({ mode }) => { const env = loadEnv(mode, process.cwd(), ""); const apiUrl = env.VITE_API_URL || "http://localhost:8000"; return { plugins: [react()], css: { modules: { localsConvention: "camelCase", generateScopedName: "[name]__[local]__[hash:base64:5]", }, preprocessorOptions: { scss: { additionalData: `@import "./src/styles/variables.scss";`, }, }, }, resolve: { alias: { "@": path.resolve(__dirname, "./src"), }, }, server: { host: "0.0.0.0", port: 5173, proxy: { "/api": { target: apiUrl, changeOrigin: true, secure: false, rewrite: (path) => path, }, }, }, optimizeDeps: { include: [ "diff", "@lezer/highlight", "@copilotkit/shared", "@rc-component/util", ], }, }; });