fix authored by Vladimir Schneider's avatar Vladimir Schneider
......@@ -15,7 +15,7 @@
"scripts": {
"post-update-cmd": [
... other stuff ...
"php artisan vendor:publish --provider=\"Vsch\\TranslationManager\\ManagerServiceProvider\" --tag=public",
"php artisan vendor:publish --provider=\"Vsch\\TranslationManager\\ManagerServiceProvider\" --tag=public" --force,
... other stuff ...
]
},
......@@ -155,6 +155,22 @@
],
);
```
###### React App Configuration
Starting with version 2.6.16, a react app is available for the LTM UI. Its URL is `/ui`
appended to the above route URL. Mix manifest lines need to exist in order for mix to be able
to find the application assets.
The configuration depends on whether you use mix on your project and whether you want to
include compiled version of the LTM UI app or build them as part of your project. In all
cases it is a matter of adding a few lines described in [[React App UI]].
:warning: A new migration was added to support persistence of user's app configuration
options. Make sure you did not skip the
[Publishing and running migrations](#publishing-and-running-migrations) step if you are
upgrading.
8.
##### Setting up user authorization
......
......