mirror of
https://github.com/trushildhokiya/allininx-2.git
synced 2025-03-14 23:58:39 +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;
|