In Experience Builder Developer Edition version 1.18, I notice the dist-prod folder is not created when I run npm run build:prod, and my builds are going to dist only.
In ExB 1.17, package.json has this:
"scripts": {
...
"build:prod": "cross-env NODE_ENV=production OUTPUT_FOLDER=./dist-prod webpack --mode production",But in ExB 1.18, notice that OUTPUT_FOLDER=./dist-prod is missing:
"scripts": {
...
"build:prod": "cross-env NODE_ENV=production webpack --mode production",I don't see any documentation of this change. Is it expected that now both the dev and prod builds go to the same location, and the dist-prod folder is obsolete?