16 lines
358 B
TypeScript
16 lines
358 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
// PWA service worker (manual - no next-pwa needed)
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: "/manifest.json",
|
|
headers: [{ key: "Content-Type", value: "application/manifest+json" }],
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |