How to use semantic-ui in react with webpack?

后端 未结 2 1598
感动是毒
感动是毒 2021-02-09 13:22

I would like to use CommonJS to include semantic-ui in my react jsx file. I installed semantic-ui with bower, and webpack is correctly configured to include the bower_components

2条回答
  •  误落风尘
    2021-02-09 14:15

    try the provide-plugin like so:

      plugins: [
        new ProvidePlugin({
          'jQuery': 'jquery'
        })
      ],
    

提交回复
热议问题