File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,22 @@ module.exports = function (defaults) {
21
21
exclude : [ 'downloads' ] ,
22
22
} ,
23
23
guidemaker : guidemakerConfig ,
24
+ autoImport : {
25
+ // taken from https://github.com/discourse/discourse/pull/18907/files
26
+ webpack : {
27
+ output : {
28
+ // Workaround for https://github.com/ef4/ember-auto-import/issues/519
29
+ // Upstreamed in https://github.com/ef4/ember-auto-import/pull/548
30
+ filename : `chunk.[id].[contenthash].js` ,
31
+ chunkFilename : `chunk.[id].[contenthash].js` ,
32
+ } ,
33
+ optimization : {
34
+ // Workaround to provide deterministic chunk output
35
+ // See https://github.com/ef4/ember-auto-import/issues/478#issuecomment-1000526638
36
+ moduleIds : 'size' ,
37
+ } ,
38
+ } ,
39
+ } ,
24
40
} ) ;
25
41
26
42
// Use `app.import` to add additional libraries to the generated
You can’t perform that action at this time.
0 commit comments