auto-save 2026-05-12 15:47 (+2, ~3)

This commit is contained in:
2026-05-12 15:51:42 +08:00
parent bbd41fad52
commit 2e45ad9d16
96 changed files with 10989 additions and 1 deletions

18
web/next.config.mjs Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: { unoptimized: true },
trailingSlash: true,
eslint: { ignoreDuringBuilds: true },
typescript: { ignoreBuildErrors: true },
skipTrailingSlashRedirect: true,
distDir: '.next',
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
}
export default nextConfig