1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 18:26:38 -04:00

Migrate to app router (#2254)

This commit is contained in:
2025-02-07 11:33:38 -05:00
committed by GitHub
parent e97613dda5
commit 8aabb4a66f
179 changed files with 4095 additions and 4951 deletions

View File

@ -1,29 +1,13 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/devcontainers/images/tree/main/src/base-ubuntu
{
"name": "Ubuntu",
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04",
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"upgradePackages": true,
"configureZshAsDefaultShell": true
},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/git-lfs:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/sshd:1": {},
"ghcr.io/jakejarvis/devcontainer-features/volta": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers/features/common-utils"
],
"postCreateCommand": "pnpm install",
"forwardPorts": [
3000
],
"name": "Node.js & TypeScript",
"image": "mcr.microsoft.com/devcontainers/typescript-node:22-bookworm",
"postCreateCommand": "bash -i -c 'rm -rf node_modules && nvm install $(cat .node-version) -y && nvm use $(cat .node-version) && npm install -g corepack@latest && corepack enable && CI=true pnpm install'",
"customizations": {
"vscode": {
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"telemetry.enableTelemetry": false
},
"extensions": [
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
@ -33,6 +17,9 @@
]
}
},
"forwardPorts": [
3000
],
"portsAttributes": {
"3000": {
"label": "next dev",