29 lines
698 B
TypeScript
29 lines
698 B
TypeScript
import { defineConfig, loadEnv } from "vite";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
import path from "path";
|
|
import { componentTagger } from "lovable-tagger";
|
|
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), "");
|
|
|
|
return {
|
|
server: {
|
|
host: "::",
|
|
port: 8080,
|
|
allowedHosts: env.VITE_ALLOWED_HOSTS?.split(",") || [
|
|
"ui.webauthn.local",
|
|
"gatehouse-ui.hawkvelt.tech",
|
|
],
|
|
},
|
|
plugins: [react(), mode === "development" && componentTagger()].filter(Boolean),
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
build: {
|
|
target: "esnext",
|
|
},
|
|
};
|
|
});
|