mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
feat(vite.config): Allowed Hosts Defined Through Env Variable
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
|
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
|
||||||
import react from "@vitejs/plugin-react-swc";
|
import react from "@vitejs/plugin-react-swc";
|
||||||
import { defineConfig, PluginOption } from "vite";
|
import { defineConfig, loadEnv, PluginOption } from "vite";
|
||||||
import { nodePolyfills } from "vite-plugin-node-polyfills";
|
import { nodePolyfills } from "vite-plugin-node-polyfills";
|
||||||
import topLevelAwait from "vite-plugin-top-level-await";
|
import topLevelAwait from "vite-plugin-top-level-await";
|
||||||
import wasm from "vite-plugin-wasm";
|
import wasm from "vite-plugin-wasm";
|
||||||
@@ -20,8 +20,13 @@ const virtualRouteFileChangeReloadPlugin: PluginOption = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// https://vite.dev/config/
|
// https://vite.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig(({ mode }) => {
|
||||||
|
const env = loadEnv(mode, process.cwd());
|
||||||
|
const allowedHosts = env.VITE_ALLOWED_HOSTS?.split(",") ?? [];
|
||||||
|
|
||||||
|
return {
|
||||||
server: {
|
server: {
|
||||||
|
allowedHosts,
|
||||||
host: true,
|
host: true,
|
||||||
port: 3000
|
port: 3000
|
||||||
// proxy: {
|
// proxy: {
|
||||||
@@ -48,4 +53,5 @@ export default defineConfig({
|
|||||||
react(),
|
react(),
|
||||||
virtualRouteFileChangeReloadPlugin
|
virtualRouteFileChangeReloadPlugin
|
||||||
]
|
]
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user