lazuri-doviguram/next.config.js
2023-07-22 18:17:14 +03:00

22 lines
454 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "media.lazuri.dev",
port: "",
pathname: "/images/**",
},
],
},
};
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer(nextConfig);