Skip to content

Commit 612d50d

Browse files
committed
chore: comment out environment variable definitions in Vite config
- Temporarily commented out the environment variable definitions in the Vite configuration file to streamline the configuration process and reduce clutter.
1 parent 332d9ac commit 612d50d

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

apps/web-app/vite.config.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ export default defineConfig({
1212
TanStackRouterVite({ autoCodeSplitting: true }),
1313
viteReact(),
1414
],
15-
define: {
16-
"import.meta.env.VITE_API_URL": import.meta.env.VITE_API_URL,
17-
"import.meta.env.VITE_WEB_APP_URL": import.meta.env.VITE_WEB_APP_URL,
18-
"import.meta.env.VITE_MARKETING_APP_URL": import.meta.env
19-
.VITE_MARKETING_APP_URL,
20-
"import.meta.env.VITE_STRIPE_CUSTOMER_PORTAL": import.meta.env
21-
.VITE_STRIPE_CUSTOMER_PORTAL,
22-
},
15+
// define: {
16+
// "import.meta.env.VITE_API_URL": import.meta.env.VITE_API_URL,
17+
// "import.meta.env.VITE_WEB_APP_URL": import.meta.env.VITE_WEB_APP_URL,
18+
// "import.meta.env.VITE_MARKETING_APP_URL": import.meta.env
19+
// .VITE_MARKETING_APP_URL,
20+
// "import.meta.env.VITE_STRIPE_CUSTOMER_PORTAL": import.meta.env
21+
// .VITE_STRIPE_CUSTOMER_PORTAL,
22+
// },
2323
});

0 commit comments

Comments
 (0)