Updated the vite.config.js

This commit is contained in:
2023-11-18 17:39:39 +01:00
parent 97373527ed
commit fc42d43ded

View File

@ -1,6 +1,22 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import * as path from "path";
export default defineConfig({
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/, ""),
}
}
}
});