Files
passmaster/next.config.js
2025-09-05 16:19:03 +02:00

14 lines
279 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
images: {
domains: [],
},
env: {
NEXT_PUBLIC_ADSENSE_CLIENT: process.env.NEXT_PUBLIC_ADSENSE_CLIENT,
},
};
module.exports = nextConfig;