fix(ui): update tailwind source paths and build order

This commit is contained in:
2026-04-25 22:24:45 +02:00
parent 8687164552
commit da8e8b8b15
3 changed files with 13 additions and 4 deletions

8
.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
node_modules
dist
.env
*.db
*.db-journal
*.db-wal
.DS_Store
.git

View File

@@ -24,12 +24,12 @@ RUN bun install --frozen-lockfile
COPY . . COPY . .
# Build frontend assets (tailwind + ts)
RUN bun run build:assets
# Generate templ files # Generate templ files
RUN templ generate RUN templ generate
# Build frontend assets (tailwind + ts)
RUN bun run build:assets
# Generate sqlc code # Generate sqlc code
RUN sqlc generate RUN sqlc generate

View File

@@ -2,7 +2,8 @@
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');
@import '@toolwind/anchors'; @import '@toolwind/anchors';
@source '../../internal/**/*.templ'; @source "../internal/**/*.templ";
@source "../web/**/*.templ";
:root { :root {
color-scheme: light dark; color-scheme: light dark;