8a62662e6e
* mark string as html safe before passing to translation instead of bypassing HTML escape using {{{unsafe}}} syntax * replace ember-i18n with ember-intl
16 lines
248 B
JavaScript
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'
|
|
}
|
|
}
|
|
};
|