Error: EACCES, open '/components/scholarshipr-card.html' '

0

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"
    }
};
    
asked by Francisco Figueroa 31.08.2018 в 18:38
source

0 answers