el.xwx.moe/next.config.js
2024-04-19 06:16:11 -04:00

16 lines
270 B
JavaScript

/** @type {import('next').NextConfig} */
const { version } = require("./package.json");
const nextConfig = {
reactStrictMode: true,
images: {
domains: ["t2.gstatic.com"],
minimumCacheTTL: 10,
},
env: {
version,
},
};
module.exports = nextConfig;