拒绝执行脚本,因为它的MIME类型('text / html')不可执行,并且启用了严格的MIME类型检查

问题描述 投票:7回答:7

我正在尝试设置反应路由,当我点击我的网站上的某些东西时路由有效,但是如果我打开一个新的选项卡并复制该URL。我明白了

Refused to execute script from 'http://localhost:8080/something/index_bundle.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.

webpack.config

const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");

module.exports = {
  entry: "./src/index.js",
  output: {
    path: path.join(__dirname, "/dist"),
    filename: "index_bundle.js"
  },
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        use: {
          loader: "babel-loader"
        }
      },
      {
        test: /\.s?css$/,
        use: [
          {
            loader: "style-loader" // creates style nodes from JS strings
          },
          {
            loader: "css-loader" // translates CSS into CommonJS
          },
          {
            loader: "sass-loader" // compiles Sass to CSS
          }
        ]
      }
    ]
  },
  plugins: [
    new HtmlWebpackPlugin({
      template: "./src/index.html"
    })
  ],
  devServer: {
    historyApiFallback:{
      index:'/dist/index.html'
    },
  }
};

index.js

import React from 'react';
import ReactDOM from 'react-dom';
import { Provider  } from 'mobx-react';
import { useStrict } from 'mobx';
import createBrowserHistory from 'history/createBrowserHistory';
import {syncHistoryWithStore } from 'mobx-react-router';
import { Router } from 'react-router'

import AppContainer from './components/App';

const browserHistory = createBrowserHistory();

import stores from '../src/stores/Stores';

const history = syncHistoryWithStore(browserHistory, stores.routingStore);

ReactDOM.render(
    <Provider {... stores}>
        <Router history={history}>
           <AppContainer />
        </Router>
    </Provider>,      
       document.getElementById('app')
);

商店

import {RouterStore} from 'mobx-react-router';

const routingStore = new RouterStore();
const stores = {
    routingStore
}

export default stores;

我也试过historyApiFallback: true

webpack react-router webpack-4
7个回答
6
投票

您的webpack配置格式不正确。所以你的devServer返回了fallback html文件而不是bundle。

因此,为什么脚本与('text / html')MIME类型一起提供。

devServer: {
    historyApiFallback:{
      index:'/dist/index.html'
    },
  }

你可能意味着这样的事情:

devServer: {
  historyApiFallback: true
}

https://webpack.js.org/configuration/dev-server/


7
投票

只需编辑以下内容即可编辑webpack配置:

    devServer: {
                 historyApiFallback: true
               }

并将此添加到public / index.html:

     <base href="/" />

这应该做的伎俩..


4
投票

也许你指的不正确

<script src="utils.js"></script>        // NOT ok. Refused to execute script..MIME

<script src="js/utils.js"></script>    // OK

0
投票

作为安全审核解决方案的一部分,我最近不得不将以下内容添加到标头中

X-Content-Type-Options: nosniff

之后我开始收到这些错误。我还没有想出一个永久性的解决方案。这些页面似乎正在起作用。控制台中的噪音很烦人!


0
投票

另一件可能导致这种情况的原因是如果没有正确设置contentBase属性。这对我们来说是因为我们要求一个JS文件,但得到一个404和webpack-dev-server服务的404“页面”作为text/html返回。


0
投票

我得到了同样的错误,并发现我需要更改我的脚本

的index.html

  <script src="App.js"></script>

  <script src="/App.js"></script>

所以,如果你有一个“。”或者在文件前面没有任何内容,只需将其替换为“/”即可。我希望这可以帮助你或其他人。


0
投票

就我而言,我遇到了这个问题,因为构建过程实际上并没有构建JavaScript包。

构建只是发出警告而不是错误(!),因此只有在构建被推送到分阶段部署环境时才会发现此问题。

因此,为了解决这个问题,我解决了没有构建bundle的问题。

© www.soinside.com 2019 - 2024. All rights reserved.