Skip to content

Instantly share code, notes, and snippets.

@bayareawebpro
Created December 13, 2018 20:12
Show Gist options
  • Save bayareawebpro/72bc655b3b2bce0410ca2d1e48a9457d to your computer and use it in GitHub Desktop.
Save bayareawebpro/72bc655b3b2bce0410ca2d1e48a9457d to your computer and use it in GitHub Desktop.
<?php
class FieldServiceProvider extends ServiceProvider{
/**
* Bootstrap the field services.
* @return void
*/
public function boot()
{
Nova::serving(function (ServingNova $event) {
$files = app('files');
if($files->exists(__DIR__.'/../dist/hot')){
Nova::remoteScript('http://localhost:8080/js/field.js');
}else{
Nova::script('myField', __DIR__.'/../dist/js/field.js');
}
Nova::style('myField', __DIR__.'/../dist/css/field.css');
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment