2

在某些情况下,我不想在 webpack 4 中使用 webpack 转换来动态导入。

我们可以通过一些选项来做到这一点吗?

async componentDidMount() {
  const { default: Greeting } = await import("/components/Greeting.js");
  this.setState({ component: Greeting });
}

/components/Greeting.js是在服务器上预编译的。它可以在没有 webpack 的情况下在 chrome 中正常工作。

webpack 正在尝试编译并发出错误

Uncaught (in promise) Error: Cannot find module '/components/Greeting.js'
at webpackMissingModule
4

1 回答 1

10

@sokra(维护者)说...

import(/* webpackIgnore: true */"...")

https://github.com/webpack/webpack/issues/7644

于 2018-07-08T06:53:43.803 回答