Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

locationStrategy: 'path' deeplinks #1545

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ bin/ion-dev.css

# WebStorm
.idea
/.vs
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="3.2.5"></a>
## [3.2.5](https://github.com/ionic-team/ionic-app-scripts/compare/v3.2.4...v3.2.5) (2020-01-20)


### Bug Fixes

* **serve:** enable 404 redirects to allow `locationStrategy: 'path'` to work with deeplinks ([#10565](https://github.com/ionic-team/ionic/issues/10565#issuecomment-307420460))



<a name="3.2.4"></a>
## [3.2.4](https://github.com/ionic-team/ionic-app-scripts/compare/v3.2.3...v3.2.4) (2019-05-24)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ionic/app-scripts",
"version": "3.2.4",
"version": "3.2.5",
"description": "Scripts for Ionic Projects",
"homepage": "https://ionicframework.com/",
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
Expand Down
2 changes: 2 additions & 0 deletions src/dev-server/http-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ export function createHttpServer(config: ServeConfig): express.Application {
setupProxies(app);
}

app.all('/*', serveIndex);

return app;
}

Expand Down