Files
neuf-www/web/next.config.mjs
T

29 lines
627 B
JavaScript

/** @type {import('next').NextConfig} */
import path from "path";
import { fileURLToPath } from "url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "http",
hostname: "**",
},
],
formats: ["image/avif", "image/webp"],
minimumCacheTTL: 7 * 24 * 60 * 60, // 7 days
dangerouslyAllowLocalIP: process.env.NODE_ENV === "development",
},
turbopack: {
root: __dirname,
},
};
export default nextConfig;