Skip to content

Commit

Permalink
fix some pages not loading (#2178)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx authored Oct 7, 2022
1 parent d50e005 commit 4ed17a0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ module.exports = function (defaults) {
options.vendorFiles = { 'jquery.js': null };
}

if (process.env.EMBER_ENV !== 'test') {
// https://github.com/ef4/ember-auto-import/issues/540
options.autoImport.publicAssetURL = 'assets/';
}

// When running ember-try on Ember < 3.13, colocation support is
// disabled in ember-cli-htmlbars and causes a build error. When
// running ember-try, we actually don't care about the "app" side
Expand Down

0 comments on commit 4ed17a0

Please sign in to comment.