- Added server port configuration in `astro.config.mjs`. - Updated Biome schema version in `biome.json`. - Updated dependencies in `package.json` to latest versions. - Introduced new devcontainer configuration files for development setup. - Removed unused components related to movie search and forms. - Refactored login handling with new Astro components for better error management. - Adjusted layouts for improved structure and user experience.
18 lines
395 B
JSON
18 lines
395 B
JSON
{
|
|
"workspaceFolder": "/workspace",
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,Z",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"oven.bun-vscode",
|
|
"biomejs.biome",
|
|
"astro-build.astro-vscode"
|
|
]
|
|
}
|
|
},
|
|
"forwardPorts": [8080],
|
|
"runArgs": ["--network=dev-network", "--name=trepa-web-dev"]
|
|
}
|