-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
75 lines (70 loc) · 1.93 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
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import * as path from "path"
import copy from 'rollup-plugin-copy'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import {
ElementPlusResolver
} from 'unplugin-vue-components/resolvers'
const resolve = (dest = './') => {
return path.resolve(__dirname, dest)
}
const root = (dest = '') => {
return resolve(`./src${dest}`)
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
Components({
resolvers: [ElementPlusResolver({importStyle: 'css'})],
dts: 'components.d.ts'
}),
AutoImport({
resolvers: [ElementPlusResolver({
importStyle: 'css',
exclude: new RegExp(/^(?!.*loading-directive).*$/)
})],
dts: 'auto-imports.d.ts'
})],
resolve: {
alias: {
'@': root()
}
},
root: root("/edge"),
build: {
emptyOutDir: true,
minify: true,
rollupOptions: {
input: {
popup: root("/edge/popup/popup.html"),
background: root("/edge/background/background.ts"),
content: root("/edge/content/content-script.ts"),
options: root("/edge/options/options.html")
},
output: {
dir: "dist",
entryFileNames: "[name]/[name].js"
},
plugins: [
copy({
targets: [
{
src: [root("/logo.png"), root("/manifest.json")],
dest: resolve('./dist')
}
]
})
]
},
},
css: {
preprocessorOptions: {
less: {
charset: false
}
}
}
})