Skip to content

6/27/18

Latest

Choose a tag to compare

@MelSumner MelSumner released this 27 Jun 12:20
· 3 commits to master since this release

isRelativePath is added to better support the option of wanting relative asset paths or absolute asset paths. This is necessary in some use cases where ember-engines are used in applications.

In the config/environment.js

theme: {
isRelativePath: true //assets will be given a relative URL
}
theme: {
isRelativePath: false //assets will have an absolute URL
}
theme: {
//nothing configured for isRelativePath will default it to true
}