Spaces:
Configuration error
Configuration error
| import type { NextConfig } from 'next' | |
| const withPWA = require('next-pwa')({ | |
| dest: 'public', | |
| disable: process.env.NODE_ENV === 'development', | |
| register: true, | |
| skipWaiting: true, | |
| }); | |
| const nextConfig: NextConfig = { | |
| images: { | |
| remotePatterns: [ | |
| { | |
| protocol: 'https', | |
| hostname: 'images.pexels.com', | |
| pathname: '/photos/**', | |
| }, | |
| ], | |
| }, | |
| } | |
| export default withPWA(nextConfig) | |