Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
leerob committed Oct 7, 2024
1 parent ef7b60e commit 7925a01
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import type { NextConfig } from 'next';
import path from 'path';
// import path from 'path';

const nextConfig: NextConfig = {
// Recommended: this will reduce output
// Docker image size by 80%+
output: 'standalone',
// Optional: bring your own cache handler
// cacheHandler: path.resolve('./cache-handler.mjs'),
Expand All @@ -27,6 +29,9 @@ const nextConfig: NextConfig = {
// compression here so we can prevent buffering
// streaming responses
compress: false,
// Optional: override the default (1 year) `stale-while-revalidate`
// header time for static pages
// swrDelta: 3600 // seconds
};

export default nextConfig;

0 comments on commit 7925a01

Please sign in to comment.