2024-02-29 08:09:37 +00:00
|
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
|
2024-01-19 08:10:01 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-01-22 12:54:11 +00:00
|
|
|
const nextConfig = {
|
2024-02-07 17:24:59 +00:00
|
|
|
distDir: "build",
|
2024-01-22 12:54:11 +00:00
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "**",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2024-02-29 08:09:37 +00:00
|
|
|
env: {
|
|
|
|
CLIENT_ID: process.env.CLIENT_ID,
|
|
|
|
CLIENT_SECRET: process.env.CLIENT_SECRET,
|
|
|
|
},
|
2024-01-22 12:54:11 +00:00
|
|
|
};
|
2024-01-19 08:10:01 +00:00
|
|
|
|
2024-02-29 08:09:37 +00:00
|
|
|
export default withNextIntl(nextConfig);
|