Stephen

Results 49 comments of Stephen
trafficstars

I made a quick and dirty workaround in my own code, if it helps you at all: ``` // Support short format prefixes if (text.includes('/') && !cidrRegex.v4({ exact: true }).test(text)...

Any word on if this is in the planning? Thanks!

Oh cool thanks! Let me know if you need me to do any testing, I will happily help out.

hi, is there some early beta I can help you test with, or anything else that might be helpful?

ok I just discovered that this will allow writing to CPTs as well, but via /wp-json/wp/v2/posts/id/meta instead of /wp-json/wp/v2/cptname/id/meta...is this the expected behavior?

In case this helps someone else looking for the same, [here is the solution I came up with](http://wordpress.stackexchange.com/questions/257628/wp-rest-api-rest-no-route-when-trying-to-update-meta/258131#258131).

you can delete by using the force parameter, ie `DEL https://example.com/wp-json/wp/v2/posts/1622/meta/11353?force=true`

I am also having this issue, not sure that a codepen should be needed in this case, it must happen to everyone using vite.

Thanks @yusufkandemir from reading it I assumed that true = preload everything, but it seems the opposite is true and indeed setting `polyfillModulePreload: true` removes those many messages, thanks.