chore(templates): update modules to latest commits

This commit is contained in:
Splitter
2025-12-14 18:53:31 +00:00
parent 66ad54c9c8
commit 6acb2e9a53
9 changed files with 798 additions and 120 deletions

View File

@@ -1,12 +1,8 @@
{
"image": "mcr.microsoft.com/devcontainers/go:1",
"features": {
"ghcr.io/devcontainers/features/hugo:1": {
"extended": true,
"version": "0.152.2"
},
"ghcr.io/devcontainers/features/node:1": {}
},
"name": "HugoBlox Codespace",
"image": "ghcr.io/HugoBlox/hugo-blox-dev:hugo0.152.2",
"updateContentCommand": "pnpm install --frozen-lockfile --prefer-offline",
"postCreateCommand": "pnpm --version && hugo version",
"customizations": {
"vscode": {
"extensions": [
@@ -14,9 +10,16 @@
]
}
},
"postCreateCommand": "pnpm install --no-frozen-lockfile && hugo --logLevel debug && pnpm dlx pagefind --source 'public' --verbose",
"postAttachCommand": "(code --command workbench.view.extension.hugoblox-studio || true) && hugo server --disableFastRender -D --port 1313",
"mounts": [
"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume"
],
"remoteUser": "vscode",
"forwardPorts": [
1313
]
}
],
"portsAttributes": {
"1313": {
"label": "Hugo Server"
}
}
}