warisan-nusantara / next.config.ts
fullstuckdev's picture
Upload 26 files
fff42e3 verified
raw
history blame contribute delete
430 Bytes
import type { NextConfig } from "next";
/** @type {import('next').NextConfig} */
const nextConfig: NextConfig = {
images: {
domains: ['*'],
dangerouslyAllowSVG: true,
remotePatterns: [
{
protocol: 'https',
hostname: '*',
},
],
},
output: 'standalone',
experimental: {
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
},
};
export default nextConfig;