This commit is contained in:
Mahyar Khanbolooki
2025-08-02 17:41:31 +03:30
parent a090c27e4b
commit 99e66e3cae
14 changed files with 3567 additions and 156 deletions
+18
View File
@@ -0,0 +1,18 @@
declare module 'next-pwa' {
import type { NextConfig } from 'next';
type WithPWA = (nextConfig: NextConfig) => NextConfig;
interface NextPWAOptions {
dest: string;
register?: boolean;
skipWaiting?: boolean;
disable?: boolean;
buildExcludes?: string[];
[key: string]: unknown;
}
const withPWA: (options: NextPWAOptions) => WithPWA;
export default withPWA;
}