Skip to content

Commit

Permalink
Fix css bundles (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
hidden4003 authored Mar 3, 2018
1 parent e7db9fc commit 703b968
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions css/main.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@import "../css/bootstrap-reset.css";
@import "../css/webui-main.css";
@import "./bootstrap-reset.css";
@import "./webui-main.css";
5 changes: 2 additions & 3 deletions webpack.config.default.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ const config = {
'!!font-awesome-sass-loader!./font-awesome.config.js',
'roboto-npm-webfont',
'bootstrap-loader',
'!!style-loader!css-loader!./css/bootstrap-reset.css',
'!!style-loader!css-loader!./css/main.css',
'./css/main.scss',
'./src/main.jsx',
],
output: {
Expand Down Expand Up @@ -80,7 +79,7 @@ const config = {
},
{
test: /\.css$/,
exclude: '/node_modules/',
exclude: ['/node_modules/', '/css/'],
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [{
Expand Down

0 comments on commit 703b968

Please sign in to comment.