Minimize CSS in production builds (all templates)

This commit is contained in:
Erick Galassi
2017-04-07 18:17:10 -03:00
committed by Steve Sanderson
parent c0205cfc4e
commit ea429cccf4
14 changed files with 16 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ module.exports = {
loaders: [
{ test: /\.ts$/, include: /ClientApp/, loader: 'ts-loader', query: { silent: true } },
{ test: /\.html$/, loader: 'html-loader' },
{ test: /\.css$/, loaders: [ 'style-loader', 'css-loader' ] },
{ test: /\.css$/, loaders: [ 'style-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize' ] },
{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' },
{ test: /\.json$/, loader: 'json-loader' }
]