12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
define: {
|
|
__IMBUSY_BE_USERPOOL__ : JSON.stringify(process.env.IMBUSY_BE_USERPOOL),
|
|
__IMBUSY_BE_USERPOOL_CLI__: JSON.stringify(process.env.IMBUSY_BE_USERPOOL_CLI),
|
|
},
|
|
})
|