9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
|
|
import type { NextConfig } from 'next'
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
basePath: process.env.BASEPATH,
|
||
|
|
output: 'standalone'
|
||
|
|
}
|
||
|
|
|
||
|
|
export default nextConfig
|