anycoder-059d41d7 / next.config.js
pradipp's picture
Upload next.config.js with huggingface_hub
6ec1e36 verified
raw
history blame contribute delete
226 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
env: {
NEXT_PUBLIC_GOOGLE_CLIENT_ID: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID,
},
}
module.exports = nextConfig