13

私のwebpack.config.js

var path = require("path")
var webpack = require('webpack')
var BundleTracker = require('webpack-bundle-tracker')

module.exports = {
    context: __dirname,

    entry: [
        'webpack-dev-server/client?http://localhost:3000',
        'webpack/hot/only-dev-server',
        './assets/js/index', // entry point of our app. assets/js/index.js should require other js modules and dependencies it needs
    ],

    output: {
        path: path.resolve('./assets/bundles/'),
        filename: "[name]-[hash].js",
        publicPath: 'http://localhost:3000/assets/bundles/', // Tell django to use this URL to load packages and not use STATIC_URL + bundle_name
    },

    plugins: [
        new webpack.HotModuleReplacementPlugin(),
        new webpack.NoEmitOnErrorsPlugin(), // don't reload if there is an error
        new BundleTracker({filename: './webpack-stats.json'}),
    ],

    module: {
        loaders: [
            {
                test: /\.jsx?$/,
                exclude: /node_modules/,
                loaders: ['react-hot-loader', 'babel-loader?presets[]=react'],
            }, // to transform JSX into JS
        ],
    },

    resolve: {
        modules: ['node_modules', 'bower_components'],
        extensions: ['.js', '.jsx']
    },
} 

エラー:

エラー: モジュール 'C:\Workspace\PyCharmProjects\ProjectPearl\node_modules\react-hot-loader\index.js' はローダーではありません (通常の関数またはピッチ関数が必要です)

モジュールに -loader 拡張機能を追加することで一部が機能するようになりました ( https://github.com/webpack/webpack/issues/3180 )が、私にとってはまだ解決しません。

手伝ってください。

4

2 に答える 2

0

この問題は、react-hot-loader 依存ライブラリのバージョンが一致していないために発生する可能性があります。package.json ですべての react-hot-loader 関連の依存関係が正しく構成されていることを確認するには、次のコマンドを実行します。

  • npm install (すべての依存関係を既にインストールしている場合、これは必要ありません)
  • npm remove --save-dev react-hot-loader
  • npm install --save react-hot-loader@<specific-version>

私の場合、特定のバージョンは 1.3.1 でした

于 2018-11-01T18:28:25.763 に答える