Last active
April 21, 2021 04:22
-
-
Save brandoncc/17d35c8e9889989a2181a9b09041a6bb to your computer and use it in GitHub Desktop.
This file contains 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
const rules = require('./webpack.rules'); | |
const plugins = require('./webpack.plugins'); | |
rules.push({ | |
test: /\.css$/, | |
use: ['style-loader', 'css-loader', 'postcss-loader'], | |
}); | |
module.exports = { | |
module: { | |
rules, | |
}, | |
plugins: plugins, | |
resolve: { | |
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css'] | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment