| 12345678910111213141516171819202122232425 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- images: {
- remotePatterns: [
- {
- protocol: "https",
- hostname: "images.unsplash.com"
- },
- {
- protocol: "https",
- hostname: "tailwindcss.com"
- }
- ]
- },
- async rewrites() {
- return [
- {
- source: "/api/:path*",
- destination: "http://localhost:3001/:path*"
- }
- ];
- }
- };
- module.exports = nextConfig;
|