el.xwx.moe/next.config.js

11 lines
195 B
JavaScript
Raw Normal View History

2023-01-22 15:39:35 -06:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2023-03-10 23:10:10 -06:00
images: {
2023-03-28 21:45:25 -05:00
domains: ["t2.gstatic.com"],
minimumCacheTTL: 10,
2023-03-10 23:10:10 -06:00
},
2023-02-06 11:59:23 -06:00
};
2023-01-22 15:39:35 -06:00
2023-02-06 11:59:23 -06:00
module.exports = nextConfig;