forked from Yuezi32/vite-react-crx-2023autumn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.content.config.js
42 lines (41 loc) · 1.25 KB
/
vite.content.config.js
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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
import { CRX_CONTENT_OUTDIR } from './globalConfig'
// https://vitejs.dev/config/
export default defineConfig({
build: {
// 输出目录
outDir: CRX_CONTENT_OUTDIR,
lib: {
entry: [
path.resolve(__dirname, 'src/content/index.jsx'),
],
// content script不支持ES6,因此不用使用es模式,需要改为cjs模式
formats: ['cjs'],
// 设置生成文件的文件名
fileName: () => {
// 将文件后缀名强制定为js,否则会生成cjs的后缀名
return 'content.js'
}
},
rollupOptions: {
output: {
assetFileNames: (assetInfo) => {
// 附属文件命名,content script会生成配套的css
return 'content.css'
},
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
// 解决react代码中包含process.env.NODE_ENV导致无法使用的问题
define: {
'process.env.NODE_ENV': null
},
plugins: [react()],
})