0 Star 0 Fork 272

songyueyue / md

forked from doocs / md 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 469 Bytes
一键复制 编辑 原始数据 按行查看 历史
const isProd = process.env.NODE_ENV === `production`
module.exports = {
lintOnSave: true,
publicPath: process.env.SERVER_ENV === `NETLIFY` ? `/` : `/md/`, // 基本路径, 建议以绝对路径跟随访问目录
configureWebpack: (config) => {
config.module.rules.push({
test: /\.(txt|md)$/i,
use: [
{
loader: `raw-loader`,
},
],
})
},
productionSourceMap: !isProd,
css: {
sourceMap: !isProd,
},
}
JavaScript
1
https://gitee.com/songyueyue/md.git
git@gitee.com:songyueyue/md.git
songyueyue
md
md
main

搜索帮助