Hi, I would like to ask if there is yarn build development in bud v5.8? It seems yarn build development is not working in v5.8?
Or is there a way on how to get the css files using asset() function? I tried to use asset() function to enqueue the css in add_editor_style. It seems works when using yarn build but when I used yarn dev, the asset() function cannot find the editor.css because the editor.css was merged to editor.js.
/*
* Add editor styles
*/
add_action( 'init', function(){
add_editor_style( asset('editor.js')->uri() );
});