Files
nextbooru/next.config.mjs
2025-01-11 16:37:47 +01:00

24 lines
406 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.externals.push('@node-rs/argon2');
return config;
},
experimental: {
serverActions: {
bodySizeLimit: '20mb',
},
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
output: 'standalone',
};
export default nextConfig;