|
- /* eslint-disable @typescript-eslint/no-var-requires */
- /** @type {import('next').NextConfig} */
-
- const withPWA = require("next-pwa")({
- dest: "public",
- register: true,
- skipWaiting: true,
- disable: process.env.NODE_ENV === "development",
- });
-
- const nextConfig = {
- eslint: {
- // Warning: This allows production builds to successfully complete even if
- // your project has ESLint errors.
- ignoreDuringBuilds: true,
- },
- };
-
- module.exports = withPWA(nextConfig);
|