This commit is contained in:
2025-10-31 15:05:47 +03:30
parent 37c501890f
commit a96fbfa91c
23 changed files with 5324 additions and 295 deletions

View File

@@ -1,7 +1,17 @@
import type { NextConfig } from "next";
import type { NextConfig } from 'next'
import withPWA from 'next-pwa'
const isProd = process.env.NODE_ENV === 'production'
const nextConfig: NextConfig = {
/* config options here */
};
reactStrictMode: true,
experimental: {},
turbopack: { root: __dirname }
}
export default nextConfig;
export default withPWA({
dest: 'public',
disable: !isProd,
register: true,
skipWaiting: true
})(nextConfig)