image-webpack-loader导致的报错问题

发布于 2022-09-12 13:46:33 字数 1381 浏览 19 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木緿 2022-09-19 13:46:33

后面改用url-loader,问题解决

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文