diff --git a/README.md b/README.md index c706d7758..fb4c50969 100644 --- a/README.md +++ b/README.md @@ -491,11 +491,13 @@ Embark is quite flexible and you can configure you're own directory structure us "contracts": ["app/contracts/**"], "app": { "css/app.css": ["app/css/**"], + "images/": ["app/images/**"], "js/app.js": ["embark.js", "app/js/**"], "index.html": "app/index.html" }, "buildDir": "dist/", - "config": "config/" + "config": "config/", + "plugins": {} } ``` diff --git a/docs/structuring-application.rst b/docs/structuring-application.rst index bd56cac38..0d70c5c01 100644 --- a/docs/structuring-application.rst +++ b/docs/structuring-application.rst @@ -11,9 +11,12 @@ structure using ``embark.json`` "contracts": ["app/contracts/**"], "app": { "css/app.css": ["app/css/**"], + "images/": ["app/images/**"], "js/app.js": ["embark.js", "app/js/**"], "index.html": "app/index.html" }, "buildDir": "dist/", - "config": "config/" + "config": "config/", + "plugins": {} } +