18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
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
|