Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Created September 8, 2020 12:52
Show Gist options
  • Select an option

  • Save harshaktg/b264398b60e1a17edd504dd2247d5f51 to your computer and use it in GitHub Desktop.

Select an option

Save harshaktg/b264398b60e1a17edd504dd2247d5f51 to your computer and use it in GitHub Desktop.
Webpack configuration babel
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.js$/,
exclude: /node_modules/,
use: ["babel-loader"]
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment