From a3789eebba5b6905db9394adbc16d0c761a4d7cd Mon Sep 17 00:00:00 2001 From: Preston Lamb Date: Thu, 30 May 2019 23:29:17 -0600 Subject: [PATCH] Relates to #24; moves the redirects file to the src folder and adds it to the assets array so it's in the build --- angular.json | 2 +- _redirects => src/_redirects | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename _redirects => src/_redirects (100%) diff --git a/angular.json b/angular.json index 8990a40..7dba8d5 100644 --- a/angular.json +++ b/angular.json @@ -22,7 +22,7 @@ "main": "src/main.ts", "polyfills": "src/polyfills.ts", "tsConfig": "src/tsconfig.app.json", - "assets": ["src/favicon.ico", "src/assets"], + "assets": ["src/favicon.ico", "src/assets", "src/_redirects"], "styles": ["src/styles.scss"], "scripts": [], "es5BrowserSupport": true diff --git a/_redirects b/src/_redirects similarity index 100% rename from _redirects rename to src/_redirects