1 2 3 4 5 6 7 8 9 10 11 12
const path = require('path'); module.exports = { context: path.resolve(__dirname, "../common_src"), entry: { index: "./index.js" }, output: { path: path.resolve(__dirname, 'dist'), filename: "index.js" }, }