From f275b675e852c37f86c4d5d46348b142a95e2591 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 15 Oct 2018 19:15:34 +0000 Subject: [PATCH] --- devdocs/tools.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/devdocs/tools.txt b/devdocs/tools.txt index 7860d1ff..cf0f11c2 100644 --- a/devdocs/tools.txt +++ b/devdocs/tools.txt @@ -42,6 +42,13 @@ LINTER = ESLINT+PRETTIER CONFIG VSCODE will use prettier to prettify my js, eslint will complain about some of it so using eslint with prettier config means they won't conflict and eslint will focus on errors, not style so much that is handled by prettier +ROUTING = NOT HASHBANG, INSTEAD PATHLOCATIONSTRATEGY +=-=-=-= +Going to attempt pathlocationstrategy for url routing, meaning no hashbang like with pecklist and rockfish so the server will need +to be able to handle direct request and return the index.html instead if it looks like an AyaNova app url. +This page has a snippet showing routing handling at the server, seems to rely on identifying the url having no extension and simply returning index.htm instead +https://www.c-sharpcorner.com/article/single-page-application-using-asp-net-core-angular/ +