Created
November 5, 2017 02:42
-
-
Save bjankord/0982e7d28c55764ebcba7123aaf8a06e to your computer and use it in GitHub Desktop.
Disabling css modules for global CSS via https://twitter.com/kylewelch/status/923586056016093184
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
| import 'rc-tabs/assets/index.css?global'; |
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
| use: [({ resourceQuery }) => ({ | |
| loader: 'css-loader', | |
| options: { | |
| modules: resourceQuery.indexOf('global') === -1, | |
| sourceMap: true, | |
| importLoaders: 1, | |
| localIdentName: '[name]__[local]___[hash:base64:5]', | |
| }, | |
| }), | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment