VuePress 1.9.0 发布,Vue 轻量级静态网站生成器
VuePress 1.9.0 发布了,此版本为配置文件引入了完整的 TypeScript 支持,还引入了拥有类型推断功能的官方插件,完整更新内容如下: 支持 .vuepress/config.ts 之前,VuePress 只支持这些类型的配置文件 .vuepress/config.js .vuepress/config.yml .vuepress/config.toml 从现在开始,.vuepress/config.ts 获得官方支持。 defineConfig 智能感知配置助手 一个在 vuepress/config 中显示的辅助函数,它可以辅助类型提示符: import { defineConfig } from "vuepress/config"; export default defineConfig({ title: "VuePress", description: "Vue-powered Static Site Generator" // ... }); Theme 基于主题的类型推断 默认情况下,defineConfig 助手利用默认主题配置的类型作为...