forked from mubaidr/vite-vue3-browser-extension-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
123 lines (113 loc) · 3.19 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
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 { VueRouterAutoImports } from 'unplugin-vue-router'
import VueRouter from 'unplugin-vue-router/vite'
import { URL, fileURLToPath } from 'url'
import { defineConfig, type Plugin } from 'vite'
// import VueDevTools from 'vite-plugin-vue-devtools'
import { defineViteConfig as define } from './define.config'
import manifest from './manifest.config'
import packageJson from './package.json'
const transformHtmlPlugin = (data) =>
<Plugin>{
name: 'transform-html',
transformIndexHtml: {
order: 'pre',
handler(html) {
return html.replace(/<%=\s*(\w+)\s*%>/gi, (match, p1) => data[p1] || '')
},
},
}
// 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 }),
VueRouter({
root: '.',
// Add your own custom pages here. Just add it to the array. Example: 'src/welcome/pages'
routesFolder: [
{ src: 'src/pages', path: 'common/' },
{ src: 'src/content-script/iframe/pages', path: 'iframe/' },
{ src: 'src/options/pages', path: 'options/' },
{ src: 'src/popup/pages', path: 'popup/' },
{ src: 'src/setup/pages', path: 'setup/' },
],
dts: 'src/typed-router.d.ts',
extensions: ['.vue'],
}),
vue(),
// VueDevTools(),
AutoImport({
imports: ['vue', VueRouterAutoImports, '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',
order: 'post',
apply: 'build',
transformIndexHtml(html, { path }) {
return html.replace(
/"\/assets\//g,
`"${relative(dirname(path), '/assets')}/`
)
},
},
transformHtmlPlugin({
HTML_TITLE: packageJson.displayName || packageJson.name,
}),
],
define,
build: {
rollupOptions: {
input: {
iframe: 'src/content-script/iframe/index.html',
setup: 'src/setup/index.html',
},
},
},
server: {
port: 8888,
strictPort: true,
hmr: {
port: 8889,
overlay: true,
},
},
optimizeDeps: {
include: ['vue', '@vueuse/core'],
exclude: ['vue-demi'],
},
})