description-improv / vite.config.ts
flowing-hugs's picture
Update vite.config.ts
01ff877 verified
raw
history blame contribute delete
435 Bytes
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => ({
server: {
host: "::",
port: 8080,
allowedHosts: ["mistral-ai-game-jam-description-improv.hf.space", "think-in-sync.com"],
},
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
}));