Skip to content

Commit

Permalink
Merge pull request #18 from BnitoBzh/master
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
RuslanZavacky authored May 31, 2017
2 parents 6458f2d + b71ec38 commit 5be4bd0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,24 @@ module.exports = function(environment) {
};
```
In case you use s3 and manifest module for ember-cli-deploy, update there configurations in `config/deploy.js`.
```javascript
module.exports = function(environment) {
var ENV = {
...
s3: {
filePattern: '**/*.{js,css,png,gif,ico,jpg,map,xml,txt,svg,swf,eot,ttf,woff,woff2,otf,json}', // add 'json'
...
},
manifest: {
filePattern: "**/*.{js,css,png,gif,ico,jpg,map,xml,txt,svg,swf,eot,ttf,woff,woff2,json}" // add 'json'
...
}
...
};
```
Configure fingerprinting in `ember-cli-build.js`. Refer to the documentation of ember-cli for [asset-compilation](https://ember-cli.com/asset-compilation#fingerprinting-and-cdn-urls)
```javascript
Expand Down

0 comments on commit 5be4bd0

Please sign in to comment.