nextjs-tailwindcss-headless.../next.config.js

9 lines
159 B
JavaScript
Raw Normal View History

2023-08-25 12:43:48 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2023-09-14 09:21:45 +08:00
images: {
domains: ["res-academy.cache.wpscdn.com"],
},
};
2023-08-25 12:43:48 +08:00
2023-09-14 09:21:45 +08:00
module.exports = nextConfig;