9 Star 0 Fork 1

Dark-Morning/wys-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:false,
pages: {
index: {
// page 的入口
entry: 'src/main.js',
// 模板来源
template: 'public/index.html',
// 在 dist/index.html 的输出
filename: 'index.html',
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: '后台首页',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'index']
},
login: {
entry: 'src/login.js',
template: 'public/login.html',
title: '管理员登录',
chunks: ['chunk-vendors', 'chunk-common', 'login']
},
userLogin: {
entry: 'src/userLogin.js',
template: 'public/userLogin.html',
title: '业主登录',
chunks: ['chunk-vendors', 'chunk-common', 'userLogin']
},
userIndex: {
entry: 'src/userIndex.js',
template: 'public/userIndex.html',
title: '业主登录',
chunks: ['chunk-vendors', 'chunk-common', 'userIndex']
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ran-zhihui/wys-vue.git
git@gitee.com:ran-zhihui/wys-vue.git
ran-zhihui
wys-vue
wys-vue
master

搜索帮助