2026-07-30 13:55:28 +08:00
|
|
|
import tailwindcss from "@tailwindcss/vite"
|
2026-07-24 18:00:22 +08:00
|
|
|
import react from "@vitejs/plugin-react"
|
|
|
|
|
import path from "path"
|
|
|
|
|
import { defineConfig } from "vite"
|
|
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
2026-07-30 13:55:28 +08:00
|
|
|
plugins: [react(), tailwindcss()],
|
|
|
|
|
resolve: {
|
2026-07-24 18:00:22 +08:00
|
|
|
alias: {
|
|
|
|
|
"@": path.resolve(__dirname, "./src"),
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-08-13 18:28:20 +08:00
|
|
|
server: {
|
|
|
|
|
proxy: {
|
|
|
|
|
"/api": "http://192.168.3.6:5000",
|
|
|
|
|
"/user": "http://192.168.3.6:5000",
|
|
|
|
|
"/product": {
|
|
|
|
|
target: "http://192.168.3.6:5000",
|
|
|
|
|
bypass(req) {
|
|
|
|
|
if (req.headers?.accept?.includes("text/html")) {
|
|
|
|
|
return "/index.html"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-07-30 13:55:28 +08:00
|
|
|
})
|