Files
local-cal/next.config.ts
2025-08-16 01:53:05 -04:00

22 lines
438 B
TypeScript

import type { NextConfig } from "next";
const withPWA = require("next-pwa")({
dest: "public",
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === "development",
});
// const nextConfig: NextConfig = {
// /* config options here */
// reactStrictMode: true,
// };
const nextConfig: NextConfig = withPWA({
/* config options here */
reactStrictMode: true,
// output: "standalone",
});
export default nextConfig;