forked from Transparency/kgroad-frontend2
22 lines
438 B
JavaScript
22 lines
438 B
JavaScript
import createNextIntlPlugin from "next-intl/plugin";
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @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,
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|