-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
52 lines (50 loc) · 1.11 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { fileURLToPath } from 'node:url';
import { defineConfig, loadEnv } from 'vite';
import vue from '@vitejs/plugin-vue';
const env = loadEnv('', process.cwd());
// https://vitejs.dev/config/
export default defineConfig({
base: env.VITE_BASE_PATH,
// base: '/NMSWikiPageCreator/',
plugins: [vue()],
test: {
browser: {
enabled: true,
headless: true,
name: 'chrome',
},
coverage: {
include: ['src/**.{ts,vue}', 'src/**/**.{ts,vue}'],
exclude: ['src/api/**/**.ts', 'src/**/**.d.ts'],
clean: true,
all: true,
},
},
build: {
rollupOptions: {
input: [
'index.html',
'about.html',
'base.html',
'biofrig.html',
'derelict.html',
'fauna.html',
'flora.html',
'mineral.html',
'moon.html',
'multitool.html',
'planet.html',
'racetrack.html',
'sandworm.html',
'settlement.html',
'starship.html',
'system.html',
],
},
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
});