Ivan K

Results 7 comments of Ivan K

@cnshenj Looks like the tesla api timeouts on purpose due to got's default user-agent. Probably related to following > Avoid setting a User-Agent header that looks like a browser (such...

I had no issues with `opcache:clear`, but did get a a 500 on `opcache:compile` with the following error: `ParseError: syntax error, unexpected '|', expecting '{' in file /var/www /var/www (truncated...)`...

@lorenzocattaneo much better, thanks!

Just ran into this, looks like some do exist in the API but not in the `/settings` endpoint, but as "single settings"? The provider [does handle it](https://github.com/jacobbednarz/terraform-provider-cloudflare/blob/c865a5b7db4127794214a3c740d371041b6b0ba7/cloudflare/resource_cloudflare_zone_settings_override.go#L79) but not the...

Hi @caoxiemeihao, it might be worthwhile trying the reproduction steps provided. I encountered a similar issue and found that using `import` instead of `require` works. Vite doesn't bundle the file...

Just ran into this, I'm using vite as well (with svelte kit). This works fine in the demo due to `path-browserify`, so fixed it by adding a similar polyfill for...

@valerii15298 Do `npm i @esbuild-plugins/node-modules-polyfill`, then add the following `resolve` config in your `vite.config.js` : ```javascript export default defineConfig({ resolve: { alias: { path: 'rollup-plugin-node-polyfills/polyfills/path' } } }); ``` this...