Added a source map to aid in debugging

This commit is contained in:
Matthew Aaron Raymer
2022-12-14 17:34:53 +08:00
parent c239906a96
commit 2c57bbf4ee

View File

@@ -1,4 +1,7 @@
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
configureWebpack: {
devtool: 'source-map'
}
});