Files
linkwarden/next.config.js
T
2024-01-12 15:57:49 -05:00

12 lines
218 B
JavaScript

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