-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.build.ts
64 lines (61 loc) · 1.48 KB
/
vite.config.build.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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import autoprefixer from 'autoprefixer'
const path = require('path')
const config = require('./package.json')
const banner = `/*!
* ${config.name} v${config.version} ${new Date()}
* (c) 2022 @jdf2e.
* Released under the MIT License.
*/`
const { resolve } = path
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [{ find: '@', replacement: resolve(__dirname, './src') }],
},
css: {
preprocessorOptions: {
scss: {
charset: false,
additionalData: `@import "@/styles/variables.scss";`,
},
postcss: {
plugins: [
autoprefixer({
overrideBrowserslist: [
'> 0.5%',
'last 2 versions',
'ie > 11',
'iOS >= 10',
'Android >= 5',
],
}),
],
},
},
},
plugins: [react()],
build: {
minify: false,
emptyOutDir: true,
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: ['react', 'react-dom'],
output: {
banner,
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
},
},
lib: {
entry: 'src/packages/ui.react.build.ts',
name: 'ui.react',
fileName: 'ui.react',
formats: ['es', 'umd'],
},
},
})