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

后端 未结 6 1953
北恋
北恋 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:19

    Use webpack's externals:

    externals allows you to specify dependencies for your library that are not resolved by webpack, but become dependencies of the output. This means they are imported from the environment during runtime.

提交回复
热议问题