1 Star 4 Fork 0

Ls-piao/视频播放

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.71 KB
一键复制 编辑 原始数据 按行查看 历史
adicwu 提交于 2022-06-07 18:45 . 优化
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import viteCompression from 'vite-plugin-compression'
export default defineConfig({
plugins: [
vue(),
// 代码压缩
viteCompression({
verbose: true,
disable: false,
threshold: 10240,
algorithm: 'gzip',
ext: '.gz'
})
],
resolve: {
// 路径别名配置
alias: {
'~styles': path.resolve('./src/assets/css'),
static: path.resolve('./src/assets'),
'@apis': path.resolve('./src/api'),
'@comps': path.resolve('./src/components'),
'@': path.resolve('./src')
}
},
css: {
preprocessorOptions: {
// 全局less配置
less: {
modifyVars: {
hack: `true; @import (reference) "${path.resolve(
'src/assets/css/util.less'
)}";`
},
javascriptEnabled: true
}
},
// 用于解决 warning: "@charset" must be the first rule in the file
postcss: {
plugins: [
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove()
}
}
}
}
]
}
},
build: {
terserOptions: {
// 生产环境下移除console
compress: {
drop_console: true,
drop_debugger: true
}
},
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules/')) {
return id
.toString()
.split('node_modules/')[1]
.split('/')[0]
.toString()
}
}
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/Ls-piao/video-playback.git
git@gitee.com:Ls-piao/video-playback.git
Ls-piao
video-playback
视频播放
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385