* chore: add dotenv dependency and configure environment variables in admin, space, and web apps * chore: allowed multiple hosts in dev mode * chore: move dotenv to dev deps * chore: update Vite configuration to set server host to 127.0.0.1 for admin, space, and web apps --------- Co-authored-by: gakshita <akshitagoyal1516@gmail.com>
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import path from "node:path";
|
|
import { reactRouter } from "@react-router/dev/vite";
|
|
import dotenv from "dotenv";
|
|
import { defineConfig } from "vite";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
dotenv.config({ path: path.resolve(__dirname, ".env") });
|
|
|
|
// Expose only vars starting with VITE_
|
|
const viteEnv = Object.keys(process.env)
|
|
.filter((k) => k.startsWith("VITE_"))
|
|
.reduce<Record<string, string>>((a, k) => {
|
|
a[k] = process.env[k] ?? "";
|
|
return a;
|
|
}, {});
|
|
|
|
export default defineConfig(() => ({
|
|
define: {
|
|
"process.env": JSON.stringify(viteEnv),
|
|
},
|
|
build: {
|
|
assetsInlineLimit: 0,
|
|
},
|
|
plugins: [reactRouter(), tsconfigPaths({ projects: [path.resolve(__dirname, "tsconfig.json")] })],
|
|
resolve: {
|
|
alias: {
|
|
// Next.js compatibility shims used within web
|
|
"next/image": path.resolve(__dirname, "app/compat/next/image.tsx"),
|
|
"next/link": path.resolve(__dirname, "app/compat/next/link.tsx"),
|
|
"next/navigation": path.resolve(__dirname, "app/compat/next/navigation.ts"),
|
|
"next/script": path.resolve(__dirname, "app/compat/next/script.tsx"),
|
|
},
|
|
dedupe: ["react", "react-dom", "@headlessui/react"],
|
|
},
|
|
server: {
|
|
host: "127.0.0.1",
|
|
},
|
|
// No SSR-specific overrides needed; alias resolves to ESM build
|
|
}));
|