blob: 001cdf2effa7ca214b337347d9dccbe9faf78d19 (
plain) (
tree)
|
|
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig(({ command }) => {
const config = {
plugins: [react()],
base: '/',
}
if (command !== 'serve') {
config.base = '/ToDo-App-Front-End/'
}
return config
})
|