Files
nxxmdata/farm-monitor-dashboard/vite.config.ts
shenquanyi 2bd1d8c032 buider
2025-08-27 15:36:36 +08:00

18 lines
316 B
TypeScript

import path from "path"
import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
host: "0.0.0.0",
port: 5300,
allowedHosts: true
}
})