React.js Error: Invariant Violation: Minified React error #3

React.js Error: Invariant Violation: Minified React error #37

本文关键字:React error Minified Invariant js Error Violation      更新时间:2023-09-26

我试着在互联网上查找,但我找不到解决这个错误的方法。

基本上,当我通过npm start在本地主机上运行我的应用程序时,它运行没有问题。

但是,当我在h-pages中切换到git branch gh-pages到主机时,我在console.log

中看到以下错误

Uncaught Invariant Violation: Minified React error #37

_registerComponent(…):Target container is not a DOM element .

链接到Git App Repository h-pages分支

这是我当前的设置:

webpack.config.js

var path = require('path');
var webpack = require('webpack');
var ghpages = require('gh-pages');
var WriteFilePlugin = require('write-file-webpack-plugin');
module.exports = {
  devtool: 'source-map',
  entry: [
    './src/index.js'
  ],
  output: {
    publicPath: '/',
    filename: 'bundle.js',
    sourceMapFilename: "./bundle.js.map",
    path: path.join(__dirname, './static')
  },
  module: {
    loaders: [{
      exclude: /node_modules/,
      loader: 'babel',
      query: {
        presets: ['react', 'es2015', 'stage-1']
      }
    },{
      test: /'.s?css$/,
      loaders: ['style','css','sass'],
      include: path.join(__dirname, 'src')
    }]
  },
  resolve: {
    extensions: ['', '.js', '.jsx'],
    alias: {
    'jquery': path.join(__dirname, 'node_modules/jquery/dist/jquery'),
    }
  },
  devServer: {
    historyApiFallback: true,
    contentBase: './',
    outputPath: path.join(__dirname, './dist')
  }
};

package.json

{
  "name": "recipe-box",
  "version": "1.0.0",
  "description": "Portfolio",
  "main": "index.js",
  "repository": "",
  "scripts": {
    "start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
    "test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
    "test:watch": "npm run test -- --watch",
    "postinstall": "webpack -p"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel-core": "^6.2.1",
    "babel-loader": "^6.2.0",
    "babel-preset-es2015": "^6.1.18",
    "babel-preset-react": "^6.1.18",
    "chai": "^3.5.0",
    "chai-jquery": "^2.0.0",
    "file-loader": "^0.9.0",
    "gh-pages": "^0.11.0",
    "image-webpack-loader": "^2.0.0",
    "jquery": "^3.1.0",
    "jsdom": "^9.5.0",
    "mocha": "^3.0.2",
    "node-sass": "^3.8.0",
    "react-addons-test-utils": "^15.3.1",
    "webpack": "^1.13.2",
    "webpack-dev-server": "^1.14.0",
    "write-file-webpack-plugin": "^3.3.0"
  },
  "dependencies": {
    "babel-preset-stage-1": "^6.1.18",
    "css-loader": "^0.25.0",
    "express": "^4.14.0",
    "jquery": "^2.2.4",
    "lodash": "^4.16.1",
    "materialize-css": "^0.97.7",
    "node-sass": "^3.8.0",
    "react": "^15.3.1",
    "react-bootstrap": "^0.30.3",
    "react-dom": "^15.3.1 ",
    "react-materialize": "^0.16.4",
    "react-redux": "^4.0.0",
    "react-router": "^2.0.1",
    "react-tap-event-plugin": "^1.0.0",
    "redux": "^3.0.4",
    "redux-logger": "^2.6.1",
    "sass-loader": "^4.0.0",
    "shortid": "^2.2.6",
    "style-loader": "^0.13.1"
  }
}

回答我自己的问题

看起来我必须把bundle.jsdist文件夹移到我的index.html所在的目录。