Wire the shared Gitea-backed suggestions panel: page, list/create + comments + upload API routes, sidebar link. Suggestions file as issues on bonna61/Moonbase; screenshot uploads persist via a mounted volume. Mirrors the FMB wiring. Secrets (NEXTAUTH_SECRET, GITEA_TOKEN) moved out of docker-compose.yml to an interpolated gitignored .env on the host, per CLAUDE.md (never commit the token). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
326 B
JavaScript
12 lines
326 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [{ protocol: "https", hostname: "**" }],
|
|
},
|
|
reactStrictMode: true,
|
|
// Shared TSX package pulled from the Gitea npm registry — transpile its source.
|
|
transpilePackages: ["@otm/account-panel"],
|
|
};
|
|
|
|
export default nextConfig;
|