big grid + images fix

This commit is contained in:
wass08
2026-02-06 09:21:56 +09:00
parent d29b736908
commit 541e9a2f85
4 changed files with 15 additions and 3 deletions
+12
View File
@@ -2,6 +2,18 @@ import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
transpilePackages: ['three', '@pascal-app/viewer', '@pascal-app/core'],
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
{
protocol: 'http',
hostname: '**',
},
],
},
}
export default nextConfig