在 vuepress 中,我如何以及在哪里设置 webpack devServer?
Posted
技术标签:
【中文标题】在 vuepress 中,我如何以及在哪里设置 webpack devServer?【英文标题】:In vuepress how and where can I set the webpack devServer? 【发布时间】:2020-09-10 00:15:24 【问题描述】:在 vuepress 中,我想为 webpack devServer 做一些配置,如下所示:
module.exports = //... devServer: https: true ;
但我不知道在哪里可以配置它。有人知道吗?
在 ..vuepress\config.js 中,配置如下,但它不起作用。
module.exports = chainWebpack (config, isServer)
非常感谢。
【问题讨论】:
【参考方案1】:您可以使用.vuepress/config.js
进行此配置。改webpack有两种配置:
module.exports =
configureWebpack: (config, isServer) =>
,
chainWebpack: (config, isServer) =>
更多详情可以阅读文档:https://vuepress.vuejs.org/config/#configurewebpack
【讨论】:
这个答案解决了你的问题吗?请接受此答案,这将对其他人有所帮助。 How to accept an answer? 这对 devServer 不起作用。似乎它只能用于配置构建管道 webpack 配置。以上是关于在 vuepress 中,我如何以及在哪里设置 webpack devServer?的主要内容,如果未能解决你的问题,请参考以下文章
如何设置一个基本 URL 以及在哪里为 api 调用在颤振 dio 中声明它?