Created
January 13, 2021 15:32
-
-
Save ErikGMatos/8ebfaedbf58f8f382757865ced0f1f9a to your computer and use it in GitHub Desktop.
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 = { | |
// lines above were suppressed | |
module: { | |
rules: [ | |
{ | |
test: /\.js$/, | |
exclude: /node_modules/, | |
use: [ | |
{ | |
loader: 'babel-loader', | |
}, | |
{ | |
loader: 'stylelint-custom-processor-loader', | |
}, | |
], | |
}, | |
], | |
}, | |
//lines below were suppressed | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment