feat(dev): add devcontainers configuration

This commit is contained in:
kolaente
2025-06-19 09:05:39 +02:00
parent c953c22e5b
commit c6929b2fea
3 changed files with 27 additions and 4 deletions

21
.devcontainer.json Normal file
View File

@@ -0,0 +1,21 @@
{
"customizations": {
"vscode": {
"extensions": [
"Syler.sass-indented",
"codezombiech.gitignore",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"golang.Go",
"lokalise.i18n-ally",
"mikestead.dotenv",
"mkhl.direnv",
"vitest.explorer",
"vue.volar"
]
}
},
"image": "ghcr.io/cachix/devenv/devcontainer:latest",
"overrideCommand": false,
"updateContentCommand": "devenv test"
}