No idea where I'm at with this, I think somewhat near the end though

This commit is contained in:
2025-10-18 00:35:28 +01:00
parent a2131623b5
commit f00b8f2bcb
54 changed files with 1635 additions and 2048 deletions

2
.vscode/launch.json vendored
View File

@@ -11,7 +11,7 @@
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"url": "https://3000.vscode.home.joemonk.co.uk/"
"url": "http://3000.vscode.localhost/"
},
{
"name": "Next.js: debug full stack",

14
.vscode/settings.json vendored
View File

@@ -4,5 +4,17 @@
"https://json.schemastore.org/github-workflow.json": "file:///workspace/next-portfolio/.gitea/workflows/deploy.yaml"
},
"editor.formatOnSave": true,
"typescript.format.enable": true
"typescript.format.enable": true,
"biome.enabled": true,
"editor.codeActionsOnSave": {
"source.action.organizeImports.biome": "explicit",
"source.action.useSortedAttributes.biome": "explicit",
"source.action.useSortedKeys.biome": "explicit",
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"editor.defaultFormatter": "biomejs.biome",
"files.associations": {
"*.css": "tailwindcss"
}
}