Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,11 @@ export default defineConfig({
languages: ['ts', 'js', 'json'],
codeTransformers: [transformerTwoslash()],
config(md) {
md.use(groupIconMdPlugin)
md.use(groupIconMdPlugin, {
titleBar: {
includeSnippet: true,
},
})
md.use(markdownItImageSize, {
publicDir: path.resolve(import.meta.dirname, '../public'),
})
Expand Down
2 changes: 1 addition & 1 deletion guide/static-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $ npm run preview

2. リポジトリー設定ページにある GitHub Pages の設定から、デプロイ元を "GitHub Actions" にすることで、プロジェクトをビルドしてデプロイするワークフローを作成できます。npm を使用して依存関係をインストールし、ビルドするサンプルワークフローが提供されています:

<<< ./static-deploy-github-pages.yaml#content
<<< ./static-deploy-github-pages.yaml#content[.github/workflows/deploy.yml]

## GitLab Pages と GitLab CI

Expand Down