加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
quasar.conf.js 1.71 KB
一键复制 编辑 原始数据 按行查看 历史
zhy6599 提交于 2024-02-20 18:01 . 去掉https
module.exports = function a(ctx) {
return {
supportTS: false,
supportIE: false,
boot: [
'index',
'filter',
'msg',
'/api',
],
css: [
'app.styl',
],
extras: [
'roboto-font',
'material-icons',
'mdi-v5',
],
framework: {
iconSet: 'material-icons',
lang: 'zh-hans',
importStrategy: 'auto',
plugins: [
'Notify',
'Dialog',
'AppFullscreen',
'Loading',
],
config: {
notify: {
position: 'top',
timeout: 4000,
color: 'info',
icon: 'info',
actions: [{ icon: 'close', color: 'white' }],
},
},
},
animations: [],
build: {
// vueRouterMode: 'history',
transpile: true, // 执行babel转码
vueCompiler: false, // 仅 Vue运行时
scopeHoisting: true, // 提升运行时性能
analyze: false, // 显示分析
modern: true, // ES6
extractCSS: false, // 从Vue文件中提取CSS
minify: true, // 缩小代码
preloadChunks: true, // 预加载
sourceMap: ctx.dev,
gzip: false,
extendWebpack(cfg) {
cfg.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /node_modules/,
});
},
env: {
PRODUCT_NAME: 'CC-ADMIN企业级快速开发平台',
BASE_URL: '/cc-admin',
WEB_SOCKET: 'ws://cc-admin.top',
},
},
devServer: {
https: false,
port: 9666,
open: true,
proxy: {
'/cc-admin': {
target: 'http://cc-admin.top',
changeOrigin: true,
},
},
},
};
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化