Skip to content
This repository has been archived by the owner on Jan 18, 2019. It is now read-only.

Commit

Permalink
docs(config): Add proxy config hints
Browse files Browse the repository at this point in the history
see #13
  • Loading branch information
hypery2k committed Nov 25, 2016
1 parent 0c8404a commit d670530
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.0.9"></a>
## [1.0.9](https://github.com/holisticon/angular-common/compare/v1.0.8...v1.0.9) (2016-11-25)


### Bug Fixes

* **webpack:** Fix sourcemapping issues ([db3ac4c](https://github.com/holisticon/angular-common/commit/db3ac4c))



<a name="1.0.8"></a>
## [1.0.8](https://github.com/holisticon/angular-common/compare/v1.0.7...v1.0.8) (2016-11-25)

Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,17 @@ module.exports = require('@holisticon/angular-common').webpack;
...
```

Configure proxy:
```
proxy: {
'*': {
headers: {"Access-Control-Allow-Origin": "http://localhost:3000", "Access-Control-Allow-Credentials": "true"},
target: 'http://localhost:8080',
secure: false
}
}
```

### Advanced Usage

#### Multiple Entries
Expand Down

0 comments on commit d670530

Please sign in to comment.