aboutsummaryrefslogtreecommitdiff
path: root/vite.config.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vite.config.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/vite.config.js b/vite.config.js
index b1b5f91..001cdf2 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -2,6 +2,15 @@ import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [react()]
+export default defineConfig(({ command }) => {
+ const config = {
+ plugins: [react()],
+ base: '/',
+ }
+
+ if (command !== 'serve') {
+ config.base = '/ToDo-App-Front-End/'
+ }
+
+ return config
})