import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; import * as path from "path"; export default defineConfig({ css: { preprocessorOptions: { scss: { api: 'modern-compiler', }, }, }, plugins: [react()], resolve: { alias: { "@styles": path.resolve(__dirname, "./src/common/styles"), "@": path.resolve(__dirname, "./src"), }, }, server: { proxy: { "/api": { target: "http://localhost:3000", changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, ""), } } } });