mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-02 01:34:56 +00:00
- Fix DBAL overview page: basePath doubled in NavTabs and Link hrefs - Fix client-side fetch URLs: prepend basePath for /api/status and /api/query - Remove unused workspace deps (api-clients, core-hooks, redux) from DBAL frontend - Simplify DBAL Dockerfile to standalone build (no monorepo workspace deps needed) - Add null guards for health array in ServerStatusPanel - Fix Prometheus nginx proxy: don't strip prefix (web.external-url handles it) - Fix caproverforge portal: remove onMouse handlers from Server Component Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
basePath: '/dbal',
|
|
}
|
|
|
|
export default nextConfig
|