# v0.4.38 (2026-05-13)

## Features
- Add DeepSeek TUI as CLI tool in dashboard (#1088)

## Fixes
- Fix broken Docker image in v0.4.36/v0.4.37 (#1096, #1097)

## Improvements
- Clean Docker tags + clearer pulls badge
This commit is contained in:
decolua
2026-05-13 22:54:40 +07:00
parent eaccb19f59
commit 58df17aa91
6 changed files with 22 additions and 20 deletions

View File

@@ -1,19 +1,16 @@
import { fileURLToPath } from "node:url";
import { dirname, join } from "node:path";
import { dirname } from "node:path";
const projectRoot = dirname(fileURLToPath(import.meta.url));
// Workspace root (one level up from app/) — where npm hoists deps.
// Next.js tracing must scan from here to find "next", "react", etc.
const workspaceRoot = join(projectRoot, "..");
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
serverExternalPackages: ["better-sqlite3", "sql.js", "node:sqlite", "bun:sqlite"],
turbopack: {
root: workspaceRoot
root: projectRoot
},
outputFileTracingRoot: workspaceRoot,
outputFileTracingRoot: projectRoot,
outputFileTracingExcludes: {
"*": ["./gitbook/**/*"]
},