Skip to content

Commit

Permalink
Merge pull request #67 from stefanbayjensen/sass-url-fix
Browse files Browse the repository at this point in the history
make sass compiler ignore urls
  • Loading branch information
iamkevingreen committed Apr 14, 2020
2 parents 68155d9 + 2a42468 commit 37c67f0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/compiler/presets/sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ module.exports = (options = {}) => {
exclude: /node_modules/,
use: [
ExtractCSS.loader,
require.resolve('css-loader'),
{
loader: require.resolve('css-loader'),
options: {
url: false
}
},
{
loader: require.resolve('postcss-loader'),
options: {
Expand Down

0 comments on commit 37c67f0

Please sign in to comment.