Gutenberg NPM 不做任何改变
Gutenberg NPM doesn't do any changes
当我在块或其他东西中创建一些更改时的 NPM ..这些更改不起作用,
这是我的 gutenberg.php
function MyBlocks()
{
wp_register_script('blocks-js', get_template_directory_uri() . '/build/index.js', array('wp-blocks' , 'wp-editor' , 'wp-components' ));
register_block_type('yusuf/custom-cta', array('editor_script' => 'blocks-js'));
// register_block_type('yusuf/custom-pro', array('editor_script' => 'blocks-js'));
// register_block_type("yusuf/statics" , array('editor_script' => 'blocks-js'));
}
add_action('init', 'MyBlocks');
我评论了这些块,但仍然出现了,
并将其也从 build/index.js 中删除,并且仍然显示,
我想知道为什么它发生在我身上!
“NPM START”已经运行
全部在浏览器缓存中。您可以在每次尝试进行任何更改时使用私人浏览器或清理浏览器缓存。您会发现您的更新看起来不错
当我在块或其他东西中创建一些更改时的 NPM ..这些更改不起作用, 这是我的 gutenberg.php
function MyBlocks()
{
wp_register_script('blocks-js', get_template_directory_uri() . '/build/index.js', array('wp-blocks' , 'wp-editor' , 'wp-components' ));
register_block_type('yusuf/custom-cta', array('editor_script' => 'blocks-js'));
// register_block_type('yusuf/custom-pro', array('editor_script' => 'blocks-js'));
// register_block_type("yusuf/statics" , array('editor_script' => 'blocks-js'));
}
add_action('init', 'MyBlocks');
我评论了这些块,但仍然出现了, 并将其也从 build/index.js 中删除,并且仍然显示, 我想知道为什么它发生在我身上! “NPM START”已经运行
全部在浏览器缓存中。您可以在每次尝试进行任何更改时使用私人浏览器或清理浏览器缓存。您会发现您的更新看起来不错