disable SPA mode by default - closes #88 - and add instructions in README
This commit is contained in:
parent
bcc87d1db2
commit
58a97ff774
2 changed files with 12 additions and 1 deletions
11
README.md
11
README.md
|
@ -47,6 +47,17 @@ npm run build
|
|||
You can run the newly built app with `npm run start`. This uses [sirv](https://github.com/lukeed/sirv), which is included in your package.json's `dependencies` so that the app will work when you deploy to platforms like [Heroku](https://heroku.com).
|
||||
|
||||
|
||||
## Single-page app mode
|
||||
|
||||
By default, sirv will only respond to requests that match files in `public`. This is to maximise compatibility with static fileservers, allowing you to deploy your app anywhere.
|
||||
|
||||
If you're building a single-page app (SPA) with multiple routes, sirv needs to be able to respond to requests for *any* path. You can make it so by editing the `"start"` command in package.json:
|
||||
|
||||
```js
|
||||
"start": "sirv public --single"
|
||||
```
|
||||
|
||||
|
||||
## Deploying to the web
|
||||
|
||||
### With [now](https://zeit.co/now)
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"dev": "rollup -c -w",
|
||||
"start": "sirv public --single"
|
||||
"start": "sirv public"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue