12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: 'export',
|
|
basePath: '',
|
|
assetPrefix: '',
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
export default nextConfig;
|