forked from wangxinleo/wechat-public-account-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
34 lines (33 loc) · 816 Bytes
/
vite.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
import { defineConfig } from 'vite'
import fs from 'fs-extra'
export default defineConfig({
build: {
lib: {
entry: 'main.js',
formats: ['cjs'],
fileName: () => 'index.js',
},
outDir: 'cloud',
rollupOptions: {
external: [
'node-schedule',
'axios',
'jsdom',
'lodash/cloneDeep.js',
'lunar-javascript',
'dayjs',
'dayjs/plugin/timezone.js',
'dayjs/plugin/utc.js',
],
plugins: [{
async load(id) {
if (/\/config\/exp-config\.js$/.test(id)) {
return (await fs.readFile(id)).toString()
.replace('import USER_CONFIG from \'./index.cjs\'', 'var USER_CONFIG = require(\'../config/index.cjs\')')
}
return null
},
}],
},
},
})