|
@@ -2,6 +2,17 @@ import type { NextConfig } from "next";
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
output: "standalone",
|
|
|
|
+
|
|
|
|
+ async headers() {
|
|
|
|
+ return [
|
|
|
|
+ {
|
|
|
|
+ source: "/(.*?)",
|
|
|
|
+ headers: [
|
|
|
|
+ { key: "Server", value: "Next.js" },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
};
|
|
};
|
|
|
|
|
|
export default nextConfig;
|
|
export default nextConfig;
|