Created
September 8, 2020 12:52
-
-
Save harshaktg/b264398b60e1a17edd504dd2247d5f51 to your computer and use it in GitHub Desktop.
Webpack configuration babel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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