1 Star 0 Fork 0

云起云变 / eff-table

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
blryli 提交于 2021-08-12 17:06 . 更新复制功能
const path = require('path')
module.exports = {
lintOnSave: false,
outputDir: './docs',
publicPath: './',
configureWebpack: {
entry: {
app: path.resolve(__dirname, './docs-src/main.js')
},
resolve: {
alias: {
'@': path.resolve(__dirname, './docs-src')
}
}
},
runtimeCompiler: true,
chainWebpack: config => {
config.module
.rule('js')
.include
.add(path.resolve(__dirname, './docs-src'))
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.compilerOptions.preserveWhitespace = true
return options
})
},
css: {
loaderOptions: {
sass: {
prependData: `@import "~@/style/imports.scss";`
}
}
}
}
1
https://gitee.com/neequ_admin/eff-table.git
git@gitee.com:neequ_admin/eff-table.git
neequ_admin
eff-table
eff-table
master

搜索帮助