We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae36034 commit d5b4700Copy full SHA for d5b4700
vite.config.ts
@@ -1,18 +1,19 @@
1
-import { fileURLToPath, URL } from 'node:url'
+import {fileURLToPath, URL} from 'node:url'
2
3
-import { defineConfig } from 'vite'
+import {defineConfig} from 'vite'
4
import vue from '@vitejs/plugin-vue'
5
import vueDevTools from 'vite-plugin-vue-devtools'
6
7
// https://vite.dev/config/
8
export default defineConfig({
9
- plugins: [
10
- vue(),
11
- vueDevTools(),
12
- ],
13
- resolve: {
14
- alias: {
15
- '@': fileURLToPath(new URL('./src', import.meta.url))
+ base: '/NW/',
+ plugins: [
+ vue(),
+ vueDevTools(),
+ ],
+ resolve: {
+ alias: {
16
+ '@': fileURLToPath(new URL('./src', import.meta.url))
17
+ },
18
},
- },
19
})
0 commit comments