image-webpack-loader导致的报错问题
vue-cli3, 新增加了image-webpack-loader, 在vue.config.js中增加以下内容,结果导致报错:
chainWebpack: config => {
config.module
.rule('images')
.test(/.(png|jpe?g|gif|svg|ico)(?.*)?$/)
.use('image-webpack-loader')
.loader('image-webpack-loader')
.options({bypassOnDebug:true})
}
报错:
⠼ Building for production...
ERROR Failed to compile with 1 errors 00:28:09
error in ./src/App.vue?vue&type=style&index=0&lang=scss&
Syntax Error: ModuleBuildError: Module build failed (from ./node_modules/_image-webpack-loader@7.0.1@image-webpack-loader/index.js):
SyntaxError: Invalid regular expression: /^.*?\((?<label>.*?)[,)]/: Invalid group
@ ./src/App.vue?vue&type=style&index=0&lang=scss& 1:0-480 1:0-480
@ ./src/App.vue
@ ./src/main.js
@ multi ./src/main.js
ERROR Build failed with errors.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! otary-video-parser-web@0.1.0 build: `vue-cli-service build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the otary-video-parser-web@0.1.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
有没有人遇到这种问题,或者要怎么排查?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
后面改用url-loader,问题解决