aboutsummaryrefslogblamecommitdiff
path: root/vite.config.js
blob: 001cdf2effa7ca214b337347d9dccbe9faf78d19 (plain) (tree)
1
2
3
4



                                        










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