docs and api mostly work

This commit is contained in:
2026-01-03 13:18:42 -07:00
parent 81ea22eae9
commit 55b0a698d0
11 changed files with 181 additions and 23 deletions

View File

@@ -0,0 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1767467593775
}
}

1
frontend/.astro/types.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="astro/client" />

View File

@@ -6,7 +6,8 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
# Use npm install for development (npm ci requires package-lock.json)
RUN npm install
# Copy source code
COPY . .

1
frontend/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference path="../.astro/types.d.ts" />