We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db91dc2 commit 697d66aCopy full SHA for 697d66a
example/vite.config.ts
@@ -7,10 +7,10 @@ export default defineConfig({
7
plugins: [tailwindcss(), react()],
8
define: {
9
// biome-ignore lint/style/useNamingConvention: <explanation>
10
- __APP_ENV__: process.env.VITE_VERCEL_ENV,
+ __APP_ENV__: JSON.stringify(process.env.VITE_VERCEL_ENV),
11
12
- VITE_UMAMI_WEBSITE_ID: process.env.VITE_UMAMI_WEBSITE_ID,
+ VITE_UMAMI_WEBSITE_ID: JSON.stringify(process.env.VITE_UMAMI_WEBSITE_ID),
13
14
- VITE_UMAMI_URL: process.env.VITE_UMAMI_URL,
+ VITE_UMAMI_URL: JSON.stringify(process.env.VITE_UMAMI_URL),
15
},
16
});
0 commit comments