-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conditionally allow assets to be loaded without a manifest. Update README to document available options. #89
base: master
Are you sure you want to change the base?
Changes from all commits
2706aeb
1c4cbb7
02495b6
245f6ea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,18 @@ the asset manifest. This defaults to `[ 'js', 'css' ]`. | |
_Note: This class provides default `contentFor`, `postprocessTree`, and `postBuild` hooks so be sure that you call | ||
`_super` if you override one of those methods._ | ||
|
||
### Options | ||
|
||
##### noManifest | ||
* Type: `boolean` | ||
* Default: `undefined` | ||
* If `true`, a <meta> tag which would eventually hold the manifest will not be inserted into the DOM. | ||
|
||
##### noManifestLookup | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does the flag actually not lookup the manifest? Or is it just going to ignore any errors arising from a lookup? What is the default value? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If |
||
* Type: `boolean` | ||
* Default: `undefined` | ||
* If `true`, no error will be thrown in the event that a manifest was not generated for the current environment | ||
|
||
### Why isn't a manifest generated by default? | ||
|
||
This addon doesn't perform manifest generation just by virtue of being installed because there is no convention for | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the default value?