mirror of
https://github.com/arthur-pbty/portfolio.git
synced 2026-08-01 20:29:43 +02:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
compress: true,
|
|
poweredByHeader: false,
|
|
};
|
|
|
|
export default nextConfig;
|