outl1ne / nova-page-manager

Static page and region manager for Laravel Nova - designed for headless CMS's.
MIT License
180 stars 39 forks source link

Move `Nova::script()/Nova::style()` methods to NPMServiceProvider #178

Closed matthewjumpsoffbuildings closed 1 month ago

matthewjumpsoffbuildings commented 7 months ago

The correct place to attach the relevant JS/CSS files for a tool is in the ServiceProviders boot() method

Using the latest Nova, the tools CSS and JS files were not loading since they were being initialised in the wrong place.

This PR fixes issue #166

Tarpsvo commented 1 month ago

Thanks a ton! :)