Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Created September 8, 2020 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harshaktg/2d2952f4d927ebce1ee623fb42f8d1f2 to your computer and use it in GitHub Desktop.
Save harshaktg/2d2952f4d927ebce1ee623fb42f8d1f2 to your computer and use it in GitHub Desktop.
Webpack CSS loaders
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment