34 lines
622 B
TypeScript
34 lines
622 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import path from "node:path";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 5602,
|
|
strictPort: true,
|
|
hmr: {
|
|
clientPort: 5602,
|
|
},
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:4001",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
preview: {
|
|
host: "0.0.0.0",
|
|
port: 5603,
|
|
strictPort: true,
|
|
},
|
|
});
|
|
|