generated from mubaidr/vite-vue3-browser-extension-v3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
112 lines (105 loc) · 2.52 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
import { crx } from '@crxjs/vite-plugin'
import vue from '@vitejs/plugin-vue'
import { dirname, relative } from 'path'
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 { URL, fileURLToPath } from 'url'
import { defineConfig } from 'vite'
import Pages from 'vite-plugin-pages'
import manifest from './manifest.config'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'~': fileURLToPath(new URL('./src', import.meta.url)),
src: fileURLToPath(new URL('./src', import.meta.url)),
},
},
plugins: [
crx({ manifest }),
vue(),
Pages({
dirs: [
{
dir: 'src/pages',
baseRoute: '',
},
{
dir: 'src/options/pages',
baseRoute: 'options',
},
{
dir: 'src/popup/pages',
baseRoute: 'popup',
},
{
dir: 'src/content-script/iframe/pages',
baseRoute: 'iframe',
},
],
}),
AutoImport({
imports: ['vue', 'vue-router', 'vue/macros', '@vueuse/core'],
dts: 'src/auto-imports.d.ts',
dirs: ['src/composables/'],
}),
// https://github.com/antfu/unplugin-vue-components
Components({
dirs: ['src/components'],
// generate `components.d.ts` for ts support with Volar
dts: 'src/components.d.ts',
resolvers: [
// auto import icons
IconsResolver({
prefix: 'i',
enabledCollections: ['mdi'],
}),
],
}),
// 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 }) {
return html.replace(
/"\/assets\//g,
`"${relative(dirname(path), '/assets')}/`
)
},
},
],
build: {
rollupOptions: {
input: {
iframe: 'src/content-script/iframe/index.html',
},
},
terserOptions: {
compress: {
drop_console: true,
},
},
},
server: {
port: 8888,
strictPort: true,
hmr: {
port: 8889,
overlay: false,
},
},
optimizeDeps: {
include: ['vue', '@vueuse/core'],
exclude: ['vue-demi'],
},
})