I noticed that we had a global `app` which appeared to be useless which led me to checking if the render method was doing anything. It doesn't appear to affect the rendering of our app so I remove dit.
Removing next() since we no longer make use of it from middleware.
Recognizing that the beforeEach call to render should be sufficient I removed the inline invocation.
We were previously calling authenticated middleware to handle the loading of the harvester plugin. This will now explicitly do the loading instead of relying on the middleware.
This showed up again because of two factors. We were no longer executing the authenticated middlware because of our guards at the top and because the route.currentRoute.path was showing '/' instead of the full path.
* Remove unused rehydratation plugin
* Remove any reference to the .nuxt folders
* Remove globalApp nuxt and any reference or use case to nuxt.error
* Replace errors handling with existing fail-whale logic
* Remove reassignment; Add meaningful variables and attributes names
* Move import logic to router
* Remove unused code and move single case to related files
* Simplify and merge functions
* Move error functions to its own util
* Fix linting issues
* Add comments and change names
* Remove nuxt util, merge logic to init entry helper
- The from/to routes were transposed so I flipped them
- Load initial settings wasn't receiving the store and the error was swallowed.
- Fixed some error reporting instead of just swallowing exceptions
* Cleanup entry for vue configuration
Rename reserved function terms
Correct extendApp initialization by passing Vue attribute
Avoid reserved name Vue
Set more unique and meaningful file names
Remove deprecated code added with rebase
Add vue instance to mountApp
Add comments and references to TODO issue
Restore function declaration over binding issue
Rename apps and correct issue with the render
Rebase residual cleanup
Remove unnecessary env var related to Nuxt
Remove deprecated confit assignment
Revert render function refactoring
* Fix Dashboard version issue