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

Removing '.' from package.json #258

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lessons/10-clean-urls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The Webpack Dev Server has an option to enable this. Open up
`package.json` and add `--history-api-fallback`.

```json
"start": "webpack-dev-server --inline --content-base . --history-api-fallback"
"start": "webpack-dev-server --inline --content-base --history-api-fallback"
```

We also need to change our relative paths to absolute paths in
Expand Down