Build an uncompressed and non-minified WWW

Is there an easy way to build an uncompressed and non-minified version into the www-directory?
Much like running npm start, but as files?

Reason is, I’d like to do some tests of the build version on another machine which doesn’t have node and the like installed, but still want to debug…

For this project I’m on 4.5.2

In your npm scripts you should have something like build-dev command that should do it

It didn’t…

But I changed the devtool settings and now it works:

devtool: env === 'production' ? false : false,

thx for your reply, though