25 lines
438 B
TypeScript
25 lines
438 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['three', '@pascal-app/viewer', '@pascal-app/core'],
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '100mb',
|
|
},
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**',
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|