1 Star 0 Fork 6

月之轨迹/workflow-designer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
const path = require('path');
const resolve = filename => path.resolve(__dirname, filename);
module.exports = {
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: process.env.VUE_APP_TITLE,
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'index']
}
},
chainWebpack: config => {
config.resolve.alias
.set('src', resolve('src'))
.set('assets', resolve('src/assets'))
.set('components', resolve('src/components'))
.set('directives', resolve('src/directives'))
.set('utils', resolve('src/utils'))
.set('views', resolve('src/views'));
},
css: {
loaderOptions: {
sass: {
data: `@import "assets/styles/index.scss";`
}
}
},
devServer: {
port: 9004,
open: true,
proxy: null,
hotOnly: false,
https: false
},
runtimeCompiler: true
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ziqingzhe/workflow-designer.git
[email protected]:ziqingzhe/workflow-designer.git
ziqingzhe
workflow-designer
workflow-designer
master

搜索帮助