14 lines
279 B
JavaScript
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;
|