diff --git a/source/vue.config.js b/source/vue.config.js index afca3dd..32305c1 100644 --- a/source/vue.config.js +++ b/source/vue.config.js @@ -1,3 +1,5 @@ +const Path = require("path"); + module.exports = { publicPath: "/", outputDir: "dist", @@ -24,4 +26,11 @@ module.exports = { } } }, + configureWebpack: { + mode: "development", + devtool: "#source-map", + entry: { + inject: Path.join(__dirname, "src/inject.js"), + } + } };