From e58ba502f2e570933d0ee30ae8c2fe7be0f276ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jeronimo=20L=C3=B3pez?= Date: Mon, 27 Feb 2017 12:37:45 +0100 Subject: [PATCH] docs(deployment): fix base tag subfolder example (#3296) The sample url for production server is "http://www.mysite.com/mysrc/app/" but the identified subfolder is "my/app", which doesn't match. --- public/docs/ts/latest/guide/deployment.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/deployment.jade b/public/docs/ts/latest/guide/deployment.jade index eb6fbe8e94..dea5eeb054 100644 --- a/public/docs/ts/latest/guide/deployment.jade +++ b/public/docs/ts/latest/guide/deployment.jade @@ -316,7 +316,7 @@ a#base-tag That's the root folder and you'd add `` near the top of `index.html` because `/` is the root of the app. But on the shared or production server, you might serve the app from a subfolder. - For example, when the URL to load the app is something like `http://www.mysite.com/mysrc/app/`, + For example, when the URL to load the app is something like `http://www.mysite.com/my/app/`, the subfolder is `my/app/` and you should add `` to the server version of the `index.html`. When the `base` tag is misconfigured, the app fails to load and the browser console displays `404 - Not Found` errors