mirror of
https://github.com/trushildhokiya/allininx-2.git
synced 2025-03-15 12:38:40 +00:00
9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: 'export',
|
|
};
|
|
|
|
export default nextConfig;
|