You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start app with:
rm -rf node_modules/.cache; npm run start
Everything runs ok
Build app with:
NODE_ENV=production npm run build
Access http://www-local.m2.test.com/checkout
Forms don't work anymore in a strange way: e.g. click on "Edit" shipping address opens a blank form but close and reopen show actual current values, first key stroke is processed but not following ones, click on a shipping method doesn't update the radio button...
The text was updated successfully, but these errors were encountered:
Hello Rajeev
I submited the issue to a work mate - who is far familiar than me with webpack stuff - and he gets to build the app in a single bundle.
He just added in config-overrides.js:
plugins: [
...config.plugins,
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1
}),
]
Now I'm still stucked but I'm trying to figure out if the problem is linked with @Adyen\adyen-web or not.
(But, still, since things are OK in dev mode but not any more after npm build, I fear it's still related with building process)
Thanks for your involvement !
Hi
Step to reproduce:
Install Hyva_CheckoutExample extension in local M2 (dockerized) and setup:upgrade
Customize .env with:
REACT_APP_STORE_CODE=default
REACT_APP_LANGUAGE=fr_FR
REACT_APP_CURRENCY_CODE=EUR
REACT_APP_CURRENCY_SYMBOL=€
REACT_APP_DEFAULT_COUNTRY=FR
Add proxy key in package.json
"proxy": "http://www-local.m2.test.com/",
Start app with:
rm -rf node_modules/.cache; npm run start
Everything runs ok
Build app with:
NODE_ENV=production npm run build
Access http://www-local.m2.test.com/checkout
Forms don't work anymore in a strange way: e.g. click on "Edit" shipping address opens a blank form but close and reopen show actual current values, first key stroke is processed but not following ones, click on a shipping method doesn't update the radio button...
The text was updated successfully, but these errors were encountered: