错误:无法解析模块' babel-loader

时间:2017-07-24 16:48:22

标签: module resolve react-dom

当我推送到heroku时,我试图在我的package.json中的postinstall脚本上运行webpack但是我收到以下错误。

找不到输入模块中的错误:错误:无法解决' babel-loader'在&C; \ project \ Node'

当我在本地运行命令时,我没有遇到任何问题。下面是我的webpack配置 - 我尝试使用Loader来解决解决问题,但无济于事?

我的webpack.config.js代码

var path = require('path');
var webpack = require('webpack');

module.exports = {
    entry: './js/app.js',
    output: {
        path: __dirname,
        filename: 'js/bundle.js'

    },

    watch: true,

    module: {
        loaders: [
        {
            test: /.jsx?$/,
            loader: 'babel-loader',
            exclude: /node_modules/,


            query: {

                presets: ['es2015','react']
            }

        }


        ]
    },
};

0 个答案:

没有答案