2025-09-23 11:30:06 +08:00
|
|
|
import type { NextConfig } from 'next'
|
2025-09-13 14:00:56 +08:00
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
/* config options here */
|
|
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
|
|
|
|
output: 'standalone',
|
2025-09-23 11:30:06 +08:00
|
|
|
}
|
2025-09-13 14:00:56 +08:00
|
|
|
|
2025-09-23 11:30:06 +08:00
|
|
|
export default nextConfig
|