Skip to content

Commit

Permalink
Archivo webpack.module.js tras el paso 10
Browse files Browse the repository at this point in the history
Fixes #1
  • Loading branch information
temple committed May 1, 2020
1 parent 33a5bb4 commit e05e125
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions config/webpack/webpack.module.js
Expand Up @@ -12,7 +12,7 @@ const URL_LOADER = {
loader: "url-loader",
options:{
fallback: FILE_LOADER,
limit: 32000
limit: 32768
}
}

Expand All @@ -35,8 +35,13 @@ module.exports = {
wrappedContextRecursive: true,
rules: [
{
test: /\.html/,
loader: "html-loader"
test: /\.html/,
loader: "html-loader",
options: {
minimize: {
removeAttributeQuotes: false
}
}
},
{
test: /\.s?[ac]ss$/,
Expand Down

0 comments on commit e05e125

Please sign in to comment.