fix(v2): fix recent baseurl issues (#3093)

* try to fix the baseUrl related issues

* fix some newly detected broken links

* fix baseurl and broken link issues

* try to configure netlify to use baseUrl deployment

* add proper netlify settings?

* add proper netlify settings?

* add proper netlify settings?

* test commit

* try to fix the redirects

* cleanup working conf

* minor redirect fix
This commit is contained in:
Sébastien Lorber 2020-07-22 19:55:40 +02:00 committed by GitHub
parent 27f384a67c
commit 811c7ae4e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 2639 additions and 146 deletions

View file

@ -30,7 +30,7 @@ export const getActivePlugin = (
const activeEntry = Object.entries(allPluginDatas).find(
([_id, pluginData]) => {
return !!matchPath(pathname, {
path: `/${pluginData.path}`,
path: pluginData.path,
exact: false,
strict: false,
});