Skip to content

Commit

Permalink
embroider: Disable ember-get-config compat adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Oct 24, 2021
1 parent a4f9938 commit d0869bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ module.exports = function (defaults) {

if (USE_EMBROIDER) {
const { Webpack } = require('@embroider/webpack');
return require('@embroider/compat').compatBuild(app, Webpack);
return require('@embroider/compat').compatBuild(app, Webpack, {
compatAdapters: new Map([['ember-get-config', null]]),
});
}

return app.toTree();
Expand Down

0 comments on commit d0869bd

Please sign in to comment.