9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export',
|
|
basePath: '/arcade',
|
|
assetPrefix: '/arcade'
|
|
};
|
|
|
|
export default nextConfig; |