mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-18 14:44:21 +01:00
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config
|
|
export default defineConfig({
|
|
define: {
|
|
// This replaces process.env.ALPHA with a literal at build time
|
|
'process.env.ALPHA': JSON.stringify(process.env.ALPHA === 'true'),
|
|
},
|
|
});
|