deepfakedetection / next.config.ts
ThaoVo's picture
Upload 10 files
4e5d65b verified
raw
history blame contribute delete
445 Bytes
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)