59001dbc5f
Stack on 201: PG 17 + Next.js 15 (Docker) + nginx (/, /php-ref/) Home: StatStrip (8 metrics), LiveActivity feed, refined Hero aurora Admin: 80+ menu catch-all renderer + read-only legacy table queries Auth/CRUD: fix narrowing in 6 action routes, fix wr_last varchar(19), fix back() new URL on missing referer Verify: 50/50 PASS across 5 iterations of login + comment + good + scrap Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
324 B
JavaScript
10 lines
324 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@slot/themes', '@slot/db', '@slot/auth'],
|
|
serverExternalPackages: ['postgres', '@node-rs/argon2'],
|
|
typescript: { ignoreBuildErrors: true },
|
|
eslint: { ignoreDuringBuilds: true },
|
|
};
|
|
export default nextConfig;
|