generated from zouhangwithsweet/vue-components-lib-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
99 lines (99 loc) · 2.72 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
import path, { resolve } from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vuejsx from '@vitejs/plugin-vue-jsx'
import Components from 'unplugin-vue-components/vite'
import Pages from 'vite-plugin-pages'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
// import Icons from 'unplugin-icons/vite'
import svgLoader from 'vite-svg-loader'
import UnoCSS from 'unocss/vite'
// import IconsResolver from 'unplugin-icons/resolver'
// https://vitejs.dev/config/
export default defineConfig({
server: {
/** 是否开启 HTTPS */
https: false,
/** 设置 host: true 才可以使用 Network 的形式,以 IP 访问项目 */
host: true, // host: "0.0.0.0"
/** 端口号 */
port: 8000,
/** 是否自动打开浏览器 */
open: false,
/** 跨域设置允许 */
cors: true,
/** 端口被占用时,是否直接退出 */
strictPort: false,
/** 接口代理 */
proxy: {
'/api/v1': {
target:
'http://rap2api.taobao.org/app/mock/313051/',
ws: false,
/** 是否允许跨域 */
changeOrigin: true,
rewrite: (path) => path.replace('/api/v1', ''),
},
},
},
build: {
outDir: 'example',
/** 消除打包大小超过 500kb 警告 */
chunkSizeWarningLimit: 2000,
/** Vite 2.6.x 以上需要配置 minify: "terser", terserOptions 才能生效 */
minify: 'terser',
/** 在打包代码时移除 console.log、debugger 和 注释 */
terserOptions: {
compress: {
drop_console: false,
drop_debugger: true,
pure_funcs: ['console.log'],
},
format: {
/** 删除注释 */
comments: false,
},
},
/** 打包后静态资源目录 */
assetsDir: 'static',
},
plugins: [
vue(),
vuejsx(),
/** 将 SVG 静态图转化为 Vue 组件 */
svgLoader({ defaultImport: 'url' }),
/** SVG */
createSvgIconsPlugin({
iconDirs: [
path.resolve(process.cwd(), 'src/icons/svg'),
],
symbolId: 'icon-[dir]-[name]',
}),
// Pages({
// pagesDir: [
// { dir: 'src/pages', baseRoute: '' },
// {
// dir: 'src/packages',
// baseRoute: '',
// },
// ],
// exclude: [
// '*/*.vue',
// '*/test/*.vue',
// '*/demo/demo[0-9].vue',
// ],
// extensions: ['vue'],
// }),
UnoCSS(),
],
resolve: {
alias: {
'pandora-lib/':
process.env.NODE_ENV !== 'preview'
? `${path.resolve(__dirname, './packages')}/`
: `${path.resolve(__dirname, './dist/es')}/`,
'dist/': `${path.resolve(__dirname, './dist/es')}/`,
'@': resolve(__dirname, './src'),
},
},
})