el.xwx.moe/next.config.js
2024-11-13 22:19:18 -05:00

28 lines
535 B
JavaScript

/** @type {import('next').NextConfig} */
const { version } = require("./package.json");
const { i18n } = require("./next-i18next.config");
const nextConfig = {
i18n,
reactStrictMode: true,
staticPageGenerationTimeout: 1000,
images: {
// For fetching the favicons
domains: ["t2.gstatic.com"],
// For profile pictures (Google OAuth)
remotePatterns: [
{
hostname: "*.googleusercontent.com",
},
],
minimumCacheTTL: 10,
},
env: {
version,
},
};
module.exports = nextConfig;