We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got this error message while trying to incorporate webpack-profile.
any idea what i am missing? Thanks. Below are my config:
dev: { vars: { //section with variables passed to webpack.DefinePlugin }, config: { devtool: 'inline-source-map', plugins: [ new webpack.optimize.OccurenceOrderPlugin(), new webpack.HotModuleReplacementPlugin(), new webpack.NoErrorsPlugin(), ], module: { loaders: [{ test: /\.jsx?$/, loaders: [ 'react-hot', 'babel?presets[]=es2015,presets[]=react', ], exclude: /(node_modules|bower_components)/ }, { test: /\.css?$/, loader: 'style!css', exclude: /node_modules/ }] } } }
The text was updated successfully, but these errors were encountered:
you need an empty array in default conf
Sorry, something went wrong.
No branches or pull requests
I got this error message while trying to incorporate webpack-profile.
any idea what i am missing? Thanks. Below are my config:
The text was updated successfully, but these errors were encountered: