imbusy/frontend/vite.config.ts
2025-06-21 12:08:17 +09:00

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),
},
})