feat: HYW & Koneko 音源管理后台 v3.0.0 (原始版本)

This commit is contained in:
Miao-moe
2026-07-11 17:30:10 +00:00
commit 6ca24b714d
54 changed files with 16774 additions and 0 deletions

17
next.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
env: {
NEXT_PUBLIC_APP_NAME: 'HYW & Koneko 音源管理后台',
NEXT_PUBLIC_APP_VERSION: '3.0.0',
},
}
export default nextConfig