16 lines
352 B
TypeScript
16 lines
352 B
TypeScript
import { defineConfig } from 'vite';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
// https://vitejs.dev/config
|
|
export default defineConfig({
|
|
define: {
|
|
'process.env.GOOSE_TUNNEL': JSON.stringify(process.env.GOOSE_TUNNEL !== 'no' && process.env.GOOSE_TUNNEL !== 'none'),
|
|
},
|
|
|
|
plugins: [tailwindcss()],
|
|
|
|
build: {
|
|
target: 'esnext'
|
|
},
|
|
});
|