Javier Alonso Shannon
Javier Alonso Shannon
This is a nice to have feature, because the raw schema comes with WordPress base URL and we need to change to the front-end URL. I will try to change...
@anttiviljami @sw-yx Hi, I'm trying to add polyfills to create-react-app (react-scripts 5.0.1) but I'm getting an error with copy-anything module: ``` TypeError: (0 , copy_anything_1.copy) is not a function at...
@nathanmargaglio Yes, we use a workaround for now. This is the react-app-rewired final config: ``` const webpack = require('webpack'); module.exports = function override(config) { const fallback = config.resolve.fallback || {};...
+1
I created a PR with a possible solution with minimal changes. I'm using this with a custom adapter for Capacitor/Capacitor Broser and is working like a charm.
Same issue here
@sannajammeh any news on this? thanks
another workaround: ``` validate.validators.optionalEmail = (value) => { if (value === '') { return null; } return validate.single(value, { email: true }); }; ```
Hi @garronej, sorry for my late response. Supporting mobile apps like Ionic (which is essentially a web app inside a webview; everything that works on the web should work here)...