EtienneHackatonGameVibe / vite.config.js
etienneLefranc's picture
Update vite.config.js
c16f53c verified
raw
history blame contribute delete
221 Bytes
import dotenv from "dotenv";
dotenv.config();
export default {
define: {
"process.env": process.env,
},
server: {
open: true,
allowedHosts: ["etiennelefranc-etiennehackatongamevibe.hf.space"],
},
};