在某些情况下,我不想在 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