如何解决Webpack 导入 min.js 文件
在使用 jspdf 库时,出现如下错误:
Module parse Failed: Unexpected token (6751:61)
You may need an appropriate loader to handle this file type.
| function (e) {
| function n() {
> return (t.html2canvas ? Promise.resolve(t.html2canvas) : import("html2canvas")).catch(function (t) {
| return Promise.reject(new Error("Could not load dompurify: " + t));
| }).then(function (t) {
在使用 jspdf 库时,出现如下错误。 我认为这个问题是因为我不处理 Webpack 中的 min.js 文件。我对webpack中的js文件进行如下处理。
resolve: {
extensions: ['.web.js','.js','.json','.web.jsx','.jsx']
}
module: {
rules: [
{
test: /\.(js|jsx)$/,enforce: 'pre',use: [
{
options: {
formatter: require.resolve('react-dev-utils/eslintFormatter'),eslintPath: require.resolve('eslint'),},loader: require.resolve('eslint-loader'),],include: paths.appSrc,
我该如何解决这个问题。是我猜测的 Webpack 的原因,还是其他问题?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。