Hello,
I’m using webpack for my project and my config looks like this:
const path = require("path")
module.exports = {
mode: "none",
entry: {
script: path.join(__dirname, "/script/main.js")
},
output: {
path: path.join(__dirname, "dist"),
filename: "[name].bundle.js"
}
}
As you see the output is in the ‘dist’ folder. I checked with console if it had created the file, and yes it did, but the editor wasn’t showing it. Why and how can I open it with the editor?