how to use webpack to load CDN or external vendor javascript lib in js file, not in html file

后端 未结 6 1954
北恋
北恋 2020-12-05 12:47

I am using react starter kit for client side programming. It uses react and webpack. No index.html or any html to edit, all js files. My question is if I want to load a vend

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-05 13:18

    I have looked around for a solution and most of all proposals were based on externals, which is not valid in my case.

    In this other post, I have posted my solution: https://stackoverflow.com/a/62603539/8650621

    In other words, I finished using a separate JS file which is responsible for downloading the desired file into a local directory. Then WebPack scans this directory and bundles the downloaded files together with the application.

提交回复
热议问题