decide.nolog.cz/config/bundlesize.js
Jeldrik Hanschke 8a62662e6e
migrate from ember-i18n to ember-intl (#358)
* mark string as html safe before passing to translation instead of bypassing HTML escape using {{{unsafe}}} syntax
* replace ember-i18n with ember-intl
2020-01-30 00:23:12 +01:00

16 lines
248 B
JavaScript

'use strict';
module.exports = {
app: {
javascript: {
pattern: 'assets/*.js',
limit: '430KB',
compression: 'gzip'
},
css: {
pattern: 'assets/*.css',
limit: '16KB',
compression: 'gzip'
}
}
};