gpt4 book ai didi

webpack - HtmlWebpackPlugin 包含的包文件的顺序

转载 作者:行者123 更新时间:2023-12-02 01:08:49 30 4
gpt4 key购买 nike

我的环境如下

  • webpack
  • 角度2
  • HtmlWebpackPlugin

  • 我提取的 webpack.config.js 文件如下
    entry: {
    'polyfills': './src/polyfills.browser.ts',
    'main': './src/main.browser.ts'
    },

    new HtmlWebpackPlugin({
    template: 'src/index.html'
    }),

    生成的最终 html 具有以下脚本引用
    <script type="text/javascript" src="main.bundle.js"></script><script type="text/javascript" src="polyfills.bundle.js"></script>

    我的问题是在 main.bundle.js 之后引用了 polyfills.bundle.js。因此,该应用程序无法运行。据我所知,应该以相反的顺序引用脚本文件。我该如何解决?另外 HtmlWebpackPlugin 如何确定插入脚本的顺序?

    最佳答案

    您可以使用 'manual' chunksSortMode 的值选项和插件将按照 chunks 中的顺序对您的块进行排序选项。
    this GitHub issue详情。

    例子:

    new HtmlWebpackPlugin({
    ...
    chunks: ['polyfills', 'main'],
    chunksSortMode: 'manual'
    })

    关于webpack - HtmlWebpackPlugin 包含的包文件的顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46187916/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com