15 lines
262 B
TypeScript
15 lines
262 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
// 允许所有来源访问开发服务器
|
|
allowedDevOrigins: ['*'],
|
|
}
|
|
|
|
export default nextConfig
|