Complete Next.js conversion - removed sql.js, updated routing, fixed Tailwind

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-19 13:36:35 +00:00
parent 8e93467317
commit ea79d908bb
75 changed files with 1101 additions and 1942 deletions

14
next.config.js Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: process.env.BUILD_STATIC ? 'export' : 'standalone',
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
turbopack: {},
images: {
unoptimized: true,
},
experimental: {
optimizePackageImports: ['@radix-ui/react-icons', '@phosphor-icons/react'],
},
};
export default nextConfig;