imnya.ng/next.config.ts
imnyang 7b06966b26
All checks were successful
Web Build / build (push) Successful in 1m57s
wow
2026-04-26 17:16:58 +09:00

17 lines
381 B
TypeScript

import type { NextConfig } from "next";
const path = require('path')
const nextConfig: NextConfig = {
// pageExtensions: ['ts', 'tsx', 'mdx'],
allowedDevOrigins: ['imnyang.dev'],
// turbopack: {
// root: path.join(__dirname, '.'),
// },
images: {
remotePatterns: [new URL('https://api.imnya.ng/**')],
},
output: 'standalone',
};
export default nextConfig;