fix: install tailwindcss in build

This commit is contained in:
eric
2026-02-26 14:49:43 +01:00
parent 3756830ec2
commit 238cb4fe26
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ WORKDIR /app
COPY package.json bun.lockb ./ COPY package.json bun.lockb ./
# Install dependencies # Install dependencies
RUN bun install --frozen-lockfile --production RUN bun install --frozen-lockfile
# Copy source code # Copy source code
COPY src ./src COPY src ./src

View File

@@ -34,7 +34,7 @@ export function page({ title, content, scripts }: PageOptions): string {
hx-ext="preload" hx-ext="preload"
class="min-h-screen bg-[radial-gradient(circle_at_top_right,#132136_0%,#0d1422_45%,#090f1b_100%)] font-sans text-slate-200" class="min-h-screen bg-[radial-gradient(circle_at_top_right,#132136_0%,#0d1422_45%,#090f1b_100%)] font-sans text-slate-200"
> >
{content} q {content}
{scripts} {scripts}
</body> </body>
</html> </html>