Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
configure webpack to process styles inside Vue SFC
  • Loading branch information
kajan committed Feb 14, 2021
1 parent 0738e8b commit c5863f2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions AspNetCoreVueMpa.Web/ClientApp/webpack.config.js
Expand Up @@ -42,6 +42,17 @@ module.exports = {
'sass-loader',
]
},
{
test: /\.(css|s[ac]ss)$/,
use: [
'style-loader',
'css-loader',
'sass-loader',
],
exclude: [
path.join(__dirname, 'assets/styles/styles.scss')
]
},
]
},
plugins: [
Expand Down

0 comments on commit c5863f2

Please sign in to comment.