diff --git a/.gitignore b/.gitignore
index 51934fb3..611941d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -49,3 +49,4 @@ bin/ion-dev.css
# WebStorm
.idea
+/.vs
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d8eb632f..f13f5f4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+
+## [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))
+
+
+
## [3.2.4](https://github.com/ionic-team/ionic-app-scripts/compare/v3.2.3...v3.2.4) (2019-05-24)
diff --git a/package.json b/package.json
index b81c1356..2670c73c 100644
--- a/package.json
+++ b/package.json
@@ -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 (https://ionic.io)",
diff --git a/src/dev-server/http-server.ts b/src/dev-server/http-server.ts
index b35c8ff6..dc165bce 100644
--- a/src/dev-server/http-server.ts
+++ b/src/dev-server/http-server.ts
@@ -47,6 +47,8 @@ export function createHttpServer(config: ServeConfig): express.Application {
setupProxies(app);
}
+ app.all('/*', serveIndex);
+
return app;
}