8 Star 0 Fork 4

廖志毅/nswcy-crowdsource-simple-case-client-web-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
创作者 提交于 2023-06-14 14:47 . 更新
const { defineConfig } = require('@vue/cli-service')
const path = require("path");
const name = '服装设计众包平台' // 网页标题
function resolve(dir) {
return path.join(__dirname, dir)
}
const CompressionPlugin = require('compression-webpack-plugin')
module.exports = defineConfig({
lintOnSave: false,
transpileDependencies: true,
css: {
loaderOptions: {
sass: {
sassOptions: { outputStyle: "expanded" }
}
}
},
configureWebpack: {
name: name,
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
}
},
plugins: [
// http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
new CompressionPlugin({
test: /\.(js|css|html)?$/i, // 压缩文件格式
filename: '[path].gz[query]', // 压缩后的文件名
algorithm: 'gzip', // 使用gzip压缩
minRatio: 0.8 // 压缩率小于1才会压缩
})
],
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/liao-zhiyi/nswcy-crowdsource-simple-case-client-web-ui.git
git@gitee.com:liao-zhiyi/nswcy-crowdsource-simple-case-client-web-ui.git
liao-zhiyi
nswcy-crowdsource-simple-case-client-web-ui
nswcy-crowdsource-simple-case-client-web-ui
master

搜索帮助