博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
atom执行num run dev报错
阅读量:4959 次
发布时间:2019-06-12

本文共 630 字,大约阅读时间需要 2 分钟。

# atom运行npm run dev报错问题

运行描述

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

1140292-20190225144348726-800355659.png

解决方案

在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,  })]

转载于:https://www.cnblogs.com/jinjiyese153/p/10430822.html

你可能感兴趣的文章
大图居中,以1920px为例
查看>>
Python3 图片转字符画
查看>>
[C陷阱和缺陷] 第7章 可移植性缺陷
查看>>
人需要治愈
查看>>
linux中configure文件默认执行结果所在位置
查看>>
jmeter 断言
查看>>
Windows向Linux上传文件夹
查看>>
20180104-高级特性-Slice
查看>>
6个SQL Server 2005性能优化工具介绍
查看>>
nginx启动、关闭命令、重启nginx报错open() "/var/run/nginx/nginx.pid" failed
查看>>
BZOJ 3097 Hash Killer I
查看>>
UINavigationController的视图层理关系
查看>>
html阴影效果怎么做,css 内阴影怎么做
查看>>
宏观经济
查看>>
综合练习:词频统计
查看>>
BZOJ1026: [SCOI2009]windy数
查看>>
样板操作数
查看>>
64位UBUNTU下安装adobe reader后无法启动
查看>>
iTextSharp带中文转换出来的PDF文档显示乱码
查看>>
qt学习记录-----3.信号与槽的问题
查看>>