Update migration guide

Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
soupette 2020-03-04 17:39:40 +01:00
parent fa28037c48
commit 9dec284470
2 changed files with 14 additions and 0 deletions

View File

@ -186,7 +186,9 @@ To disable the information box containing the tutorial videos, create a file at
Add the following configuration:
```js
export const LOGIN_LOGO = null;
export const SHOW_TUTORIALS = false;
export const SETTINGS_BASE_URL = '/settings';
```
### Changing the port

View File

@ -53,3 +53,15 @@ Although we do not recommend it (error prone), you can still access a local poli
## Rebuilding your administration panel
Now delete the `.cache` and `build` folders. Then run `yarn develop`.
::: warning NOTE
If you have modified the `admin/src/config.js` file you need to update its content with:
```
export const LOGIN_LOGO = null;
export const SHOW_TUTORIALS = false;
export const SETTINGS_BASE_URL = '/settings';
```
:::