forked from Eisvana/EisvanaWikiPageCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
54 lines (53 loc) · 1.22 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
53
54
import { fileURLToPath } from 'node:url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
base: '/RSSWikiPageCreator/',
plugins: [vue()],
// test: {
// environment: 'happy-dom',
// browser: {
// provider: 'webdriverio',
// 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',
'base.html',
'basenocensus.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',
'faq.html',
'glyphgeneratorV2.html',
'baserenewal.html',
],
},
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
});