75a198f3e6
Also fixes an issue with owner injection. This must be done in `.create()` and not on `.extend()`. Ember 3.13 seems to be more strict about that one.
16 lines
250 B
JavaScript
16 lines
250 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
app: {
|
|
javascript: {
|
|
pattern: 'assets/*.js',
|
|
limit: '390KB',
|
|
compression: 'gzip'
|
|
},
|
|
css: {
|
|
pattern: 'assets/*.css',
|
|
limit: '15.3KB',
|
|
compression: 'gzip'
|
|
}
|
|
}
|
|
};
|