Release Notes / Version 11.2310
Table Of ContentsSince October 2022 the new LTS of Node.js is v18. All workspaces were adjusted accordingly.
As the frontend workspace still utilizes Webpack 4 it requires a small
adjustment to be able to run on Node 18. Please run
pnpm add -D cross-env
in all your custom themes and
adjust the following entry of the package.json
files from:
"scripts": { ... "build": "webpack", ... }
to
"scripts": { ... "build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack", ... }
The dependency node-sass
has been updated to
version 8 accordingly.
(CMS-23072)