Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #137 from SmartColumbusOS/update_webpack
Browse files Browse the repository at this point in the history
updated webpack
  • Loading branch information
dunson062786 authored Oct 6, 2020
2 parents 5a402a7 + b988b1c commit 20114d5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module.exports = (env, argv) => {
use: [{ loader: 'svg-inline-loader' }]
},
{
test: /\.(css|scss)$/,
test: /\.css$/,
use: [
'style-loader',
{
Expand All @@ -90,6 +90,10 @@ module.exports = (env, argv) => {
},
'sass-loader'
]
},
{
test: /\.scss$/,
use: ["style-loader", "css-loader", "sass-loader"]
}
]
},
Expand Down

0 comments on commit 20114d5

Please sign in to comment.