9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
useCache: true
|
|
}
|
|
};
|
|
|
|
export default nextConfig; |