Refused to execute script from because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled

后端 未结 7 1153
误落风尘
误落风尘 2020-12-17 16:25

I am trying to setup react routing which works when I click on something on my site the route works, however if I open a new tab and copy that url. I get

Ref         


        
7条回答
  •  一生所求
    2020-12-17 16:38

    In my case, I encountered this issue because the build process did not actually build the JavaScript bundle.

    The build just emitted a warning instead of an error(!), and so this issue was only found when the build was pushed to a staged deployment environment.

    Hence to fix this issue I fixed the problem with the bundle not being built.

提交回复
热议问题