The webpack can not be executed in my project, because it modifies a module and no longer shows me this error. This is the error I'm receiving:
Module build failed: Error: EACCES: permission denied, open
This is the webpack configuration file
var path = require('path');
module.exports = {
entry: {
test: path.join(__dirname, "src/entry.js")
},
output: {
path: __dirname,
publicPath: "/",
filename: "[name].js",
sourceMapFilename: "[file].map"
}
};