Files
linkwarden/next.config.js
T
2024-02-26 22:29:23 -05:00

11 lines
195 B
JavaScript

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