加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
adicwu 提交于 2021-12-24 15:55 . 1
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// import styleImport from 'vite-plugin-style-import'
import viteCompression from 'vite-plugin-compression'
export default defineConfig({
plugins: [
vue(),
// styleImport({
// libs: [
// {
// libraryName: 'element-plus',
// esModule: true,
// ensureStyleFile: true,
// resolveStyle: (name) => {
// return `element-plus/lib/theme-chalk/${name}.css`
// },
// resolveComponent: (name) => {
// return `element-plus/lib/${name}`
// }
// }
// ]
// }),
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: {
modifyVars: {
hack: `true; @import (reference) "${path.resolve(
'src/assets/css/util.less'
)}";`
},
javascriptEnabled: true
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化