24 lines
454 B
TypeScript
24 lines
454 B
TypeScript
import type { NextConfig } from "next";
|
|
import withPWAInit from "@ducanh2912/next-pwa";
|
|
|
|
const withPWA = withPWAInit({
|
|
dest: "public",
|
|
disable: false,
|
|
register: true,
|
|
} as any);
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
pathname: '/**',
|
|
},
|
|
],
|
|
},
|
|
turbopack: {},
|
|
};
|
|
|
|
export default withPWA(nextConfig); |