In vuepress, I want to do some config for webpack devServer like below:
module.exports = { //... devServer: { https: true } };
but I don't know where I can config it. Does anyone know it?
In ..vuepress\config.js, config as below, but it doesn;t work.
module.exports = { chainWebpack (config, isServer) { } }
Thanks a lot.