docker-nginx2 / frontend /vite.config.ts
hamza82's picture
make this code runable and solve error
1201570
raw
history blame
260 Bytes
import path from "path";
import react from "@vitejs/plugin-react-swc";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});