简体   繁体   中英

Facing errors while running and NPM script

When I try to run the script, the CLI returns some weird error I am not able to understand. Can someone explain what has happened? TIA. CLI error message

文件目录

your webpack output path is wrong, use

module.exports = {
  entry: path.join(path.resolve(__dirname, "src/js"), "index.js"),

  output: {
    path: path.resolve(__dirname, "dist"),
    filename: "js/bundle.js",
    publicPath: "/"
  },
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM