wow
Some checks failed
Web Build / build (push) Failing after 55s

This commit is contained in:
암냥 2026-04-26 17:14:32 +09:00
commit aaf3ed3b8c
No known key found for this signature in database
5 changed files with 24 additions and 29 deletions

View file

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