41 lines
823 B
TypeScript
41 lines
823 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import path from "path";
|
|
|
|
const port = Number(process.env.PORT) || 5173;
|
|
const basePath = process.env.BASE_PATH || "/";
|
|
|
|
export default defineConfig({
|
|
base: basePath,
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(import.meta.dirname, "src"),
|
|
},
|
|
dedupe: ["react", "react-dom"],
|
|
},
|
|
root: path.resolve(import.meta.dirname),
|
|
build: {
|
|
outDir: path.resolve(import.meta.dirname, "dist/public"),
|
|
emptyOutDir: true,
|
|
},
|
|
server: {
|
|
port,
|
|
host: "0.0.0.0",
|
|
allowedHosts: true,
|
|
fs: {
|
|
strict: true,
|
|
deny: ["**/.*"],
|
|
},
|
|
},
|
|
preview: {
|
|
port,
|
|
host: "0.0.0.0",
|
|
allowedHosts: true,
|
|
},
|
|
});
|