10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
// serverActions: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|