15 lines
231 B
JavaScript
15 lines
231 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
allowedDevOrigins: [
|
|
"192.168.10.101"
|
|
]
|
|
}
|
|
|
|
export default nextConfig
|