Created
August 30, 2021 07:45
-
-
Save orjan/a3a342313b51017189e3eef8a3d3c789 to your computer and use it in GitHub Desktop.
vue-webpack-extend.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
chainWebpack: config => { | |
config | |
.plugin('html') | |
.tap(args => { | |
console.log(args) | |
// args[0].template = '/Users/username/proj/app/templates/index.html' | |
return args | |
}) | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment