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
To work across all platforms including windows, explicit path of webpack could be omitted as NPM handles this automatically. With explicit path getting error "'node_modules' is not recognized as an internal or external command" on Windows machine.
To work across all platforms including windows, explicit path of webpack could be omitted as NPM handles this automatically. With explicit path getting error "'node_modules' is not recognized as an internal or external command" on Windows machine.
From:
"build": "node_modules/.bin/webpack --config webpack.config.js",
"start": "node_modules/.bin/webpack serve --config webpack.config.js --open"
To:
"build": "webpack --config webpack.config.js",
"start": "webpack serve --config webpack.config.js --open"
The text was updated successfully, but these errors were encountered: