kgroad-frontend2/next.config.mjs

22 lines
438 B
JavaScript
Raw Permalink Normal View History

import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
2024-01-19 08:10:01 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
distDir: "build",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
env: {
CLIENT_ID: process.env.CLIENT_ID,
CLIENT_SECRET: process.env.CLIENT_SECRET,
},
};
2024-01-19 08:10:01 +00:00
export default withNextIntl(nextConfig);