Skip to content

Commit 73699db

Browse files
committed
Auto merge of #4066 - Turbo87:embroider, r=locks
embroider: Disable `ember-get-config` compat adapter see embroider-build/embroider#823
2 parents 7479f59 + 98e9247 commit 73699db

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ember-cli-build.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ module.exports = function (defaults) {
4646

4747
if (USE_EMBROIDER) {
4848
const { Webpack } = require('@embroider/webpack');
49-
return require('@embroider/compat').compatBuild(app, Webpack);
49+
return require('@embroider/compat').compatBuild(app, Webpack, {
50+
// see https://github.com/embroider-build/embroider/issues/823
51+
compatAdapters: new Map([['ember-get-config', null]]),
52+
});
5053
}
5154

5255
return app.toTree();

0 commit comments

Comments
 (0)