10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import type {NextConfig} from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
basePath: '',
|
|
assetPrefix: '',
|
|
};
|
|
|
|
export default nextConfig;
|