seycara/next.config.js

11 lines
195 B
JavaScript
Raw Permalink Normal View History

2024-09-07 12:47:58 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ["static.wixstatic.com"],
},
};
module.exports = nextConfig;