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

26 lines
466 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: "**",
},
],
},
turbopack: {
root: __dirname,
},
};
export default nextConfig;