启用 source-map
Snipaste_2019-05-31_11-00-16.jpg source-map.gifmodule.exports = {
build: {
extend (config, { isClient }) {
// 为 客户端打包 进行扩展配置
if (isClient) {
config.devtool = 'eval-source-map'
}
}
}
}
module.exports = {
build: {
extend (config, { isClient }) {
// 为 客户端打包 进行扩展配置
if (isClient) {
config.devtool = 'eval-source-map'
}
}
}
}
本文标题:NuxtJS nuxt.config.js source-map
本文链接:https://www.haomeiwen.com/subject/axhwtctx.html
网友评论