码迷,mamicode.com
首页 > 其他好文 > 详细

atom执行num run dev报错

时间:2019-02-25 15:14:27      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:wing   dev   int   path   result   you   orm   file   webp   

# atom运行npm run dev报错问题

运行描述

vue项目,直接在终端中运行 npm run dev 可以成功执行。但是在atom安装的platformio-ide-terminal插件中打开一个终端运行报错

技术图片

解决方案

在webpack.dev.conf.js中添加如下配置即可

const ExtractTextPlugin = require('extract-text-webpack-plugin')

plugins: [
  ...
  // extract css into its own file
  new ExtractTextPlugin({
    filename: utils.assetsPath('css/[name].[contenthash].css'),
    // set the following option to `true` if you want to extract CSS from
    // codesplit chunks into this main css file as well.
    // This will result in *all* of your app's CSS being loaded upfront.
    allChunks: false,
  })
]

atom执行num run dev报错

标签:wing   dev   int   path   result   you   orm   file   webp   

原文地址:https://www.cnblogs.com/jinjiyese153/p/10430822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!