You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,18 @@ For more details component usage and asset generation, see the [ember-cli-dynami
38
38
39
39
The schema variable can be in string or object form, but needs to be a valid json-schema alpaca form definition. See the [alpacajs website](http://alpacajs.org) for more information about building valid schemas.
40
40
41
+
## Excluding Assets
42
+
By default ember-cli-dynamic-forms imports bootstrap and alpaca assets to the broccoli tree. If you wish to disable this behaviour and use your own assets, simply specify it in your ember-cli-build.js.
43
+
44
+
```js
45
+
var app =newEmberApp({
46
+
'ember-cli-dynamic-forms': {
47
+
includeAssets:false, // disables the includion of all assets
48
+
includeBootstrapAssets:false// disables just the inclusion of bootstrap assets whilst leaving the rest inplace
0 commit comments