Why is browser.min.js needed in reactjs?

后端 未结 3 1363
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-02 03:44

I’m trying to build a simple React application and am wondering why I need the browser.min.js file.

I have included both react and react-dom.js, but nothing is displ

3条回答
  •  难免孤独
    2021-01-02 04:41

    You've written the code in Babel (ES7) and not in a version of JavaScript that the browser can handle natively, and you are delivering the ES7 to the browser instead of transpiling it at build time.

提交回复
热议问题