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