-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
vite.config.ts
129 lines (125 loc) · 3.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { dirname, relative } from 'node:path'
import { fileURLToPath, URL } from 'node:url'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import IconsResolver from 'unplugin-icons/resolver'
import Icons from 'unplugin-icons/vite'
import Components from 'unplugin-vue-components/vite'
import { defineConfig } from 'vite'
import Pages from 'vite-plugin-pages'
import vueDevTools from 'vite-plugin-vue-devtools'
import { defineViteConfig as define } from './define.config'
// https://vitejs.dev/config/
export default defineConfig({
server: {
port: 5173,
strictPort: true,
hmr: {
port: 5173,
},
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'~': fileURLToPath(new URL('./src', import.meta.url)),
src: fileURLToPath(new URL('./src', import.meta.url)),
'@assets': fileURLToPath(new URL('src/assets', import.meta.url)),
},
},
css: {
preprocessorOptions: {
scss: {
api: 'modern',
},
},
},
plugins: [
vue(),
vueDevTools(),
Pages({
dirs: [
{
dir: 'src/pages',
baseRoute: 'common',
},
{
dir: 'src/setup/pages',
baseRoute: 'setup',
},
{
dir: 'src/popup/pages',
baseRoute: 'popup',
},
{
dir: 'src/options/pages',
baseRoute: 'options',
},
{
dir: 'src/content-script/iframe/pages',
baseRoute: 'iframe',
},
],
}),
AutoImport({
imports: [
'vue',
'vue-router',
'@vueuse/core',
{
'webextension-polyfill': [['*', 'browser']],
},
],
dts: 'src/types/auto-imports.d.ts',
dirs: ['src/composables/', 'src/stores/', 'src/utils/'],
eslintrc: {
enabled: true,
filepath: 'src/types/.eslintrc-auto-import.json',
},
}),
// https://github.com/antfu/unplugin-vue-components
Components({
dirs: ['src/components'],
// generate `components.d.ts` for ts support with Volar
dts: 'src/types/components.d.ts',
resolvers: [
// auto import icons
IconsResolver(),
],
}),
// https://github.com/antfu/unplugin-icons
Icons({
autoInstall: true,
compiler: 'vue3',
scale: 1.5,
}),
// rewrite assets to use relative path
{
name: 'assets-rewrite',
enforce: 'post',
apply: 'build',
transformIndexHtml(html, { path }) {
const assetsPath = relative(dirname(path), '/assets').replace(
/\\/g,
'/'
)
return html.replace(/"\/assets\//g, `"${assetsPath}/`)
},
},
],
build: {
rollupOptions: {
input: {
iframe: 'src/content-script/iframe/index.html',
popup: 'src/popup/index.html',
setup: 'src/setup/index.html',
options: 'src/options/index.html',
},
},
},
optimizeDeps: {
include: ['vue', '@vueuse/core', 'webextension-polyfill'],
exclude: ['vue-demi'],
},
assetsInclude: ['src/assets/*/**'],
define,
})