We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 307f464 commit 34371a8Copy full SHA for 34371a8
vite.config.ts
@@ -1,7 +1,13 @@
1
import { defineConfig } from 'vite'
2
import react from '@vitejs/plugin-react'
3
4
-// https://vite.dev/config/
+// https://vitejs.dev/config/
5
export default defineConfig({
6
plugins: [react()],
7
+ base: '/leetcode-70-climbing-stairs/',
8
+ build: {
9
+ outDir: 'dist',
10
+ assetsDir: 'assets',
11
+ emptyOutDir: true
12
+ }
13
})
0 commit comments