Skip to content
This repository was archived by the owner on Jan 19, 2023. It is now read-only.

Commit 8aff84c

Browse files
committed
Make classes more easily override-able. Fixes #24
1 parent 5046995 commit 8aff84c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

webpack.config.demo.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = {
4040
{
4141
test: /\.scss$/,
4242
loaders: [
43-
'isomorphic-style-loader',
43+
'isomorphic-style-loader?insertAt=top',
4444
'css-loader?modules&-autoprefixer&importLoaders=1&localIdentName=[local]___[hash:base64:5]',
4545
'postcss-loader',
4646
'sass-loader',

webpack.config.dev.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = {
4242
{
4343
test: /\.scss$/,
4444
loaders: [
45-
'isomorphic-style-loader',
45+
'isomorphic-style-loader?insertAt=top',
4646
'css-loader?modules&-autoprefixer&importLoaders=1&localIdentName=[local]___[hash:base64:5]',
4747
'postcss-loader',
4848
'sass-loader',

webpack.config.umd.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = {
4848
{
4949
test: /\.scss$/,
5050
loaders: [
51-
'isomorphic-style-loader',
51+
'isomorphic-style-loader?insertAt=top',
5252
'css-loader?modules&-autoprefixer&importLoaders=1&localIdentName=[local]___[hash:base64:5]',
5353
'postcss-loader',
5454
'sass-loader',

0 commit comments

Comments
 (0)