24 lines
465 B
JavaScript
24 lines
465 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
pageExtensions: ['mdx', 'md', 'jsx', 'js', 'tsx', 'ts'],
|
|
reactStrictMode: false,
|
|
compress: true,
|
|
images: {
|
|
domains: ['https://newadmin.impo.app'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'newadmin.impo.app',
|
|
},
|
|
],
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
experimental: {
|
|
typedRoutes: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|