Initial commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
output: "standalone",
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "utfs.io",
|
||||
},
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "uploadthing.com",
|
||||
},
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "*.r2.cloudflarestorage.com",
|
||||
},
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "*.s3.amazonaws.com",
|
||||
},
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "*.backblazeb2.com",
|
||||
},
|
||||
// Local storage / MinIO
|
||||
{
|
||||
protocol: "http",
|
||||
hostname: "localhost",
|
||||
},
|
||||
],
|
||||
},
|
||||
experimental: {
|
||||
serverActions: {
|
||||
bodySizeLimit: "10mb",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user