Skip to content

Commit e664c06

Browse files
committed
Remove conditional base
1 parent 5ba4d5a commit e664c06

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

vite.config.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ import { defineConfig } from 'vite'
22
import react from '@vitejs/plugin-react'
33
import tailwindcss from '@tailwindcss/vite'
44

5-
const base = process.env.NODE_ENV === "production" ? "/progress-dashboard/" : ""
6-
console.log(process.env.NODE_ENV)
7-
8-
// https://vite.dev/config/
95
export default defineConfig({
106
plugins: [react(), tailwindcss()],
11-
base,
7+
base: "/progress-dashboard/",
128
})

0 commit comments

Comments
 (0)