Webpack2 延迟加载多个模块

Webpack2 Lazy Loading multiple modules

我需要同时延迟加载多个文件。

延迟加载模块及其语言文件会很好

有这样的可能吗?

import(/* webpackChunkName: "chart.js" */ ['chart.js','chart.de.js']).then((Chart, Chart2) => { }

在这里找到解决方案https://survivejs.com/webpack/building/code-splitting/#dynamic-import

Promise.all([
  import("lunr"),
  import("../search_index.json"),
]).then(([lunr, search]) => {
  return {
    index: lunr.Index.load(search.index),
    lines: search.lines,
  };
});