13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
|
|
output: process.env.NEXT_PUBLIC_OUTPUT_TYPE as
|
|
| "standalone"
|
|
| "export"
|
|
| undefined,
|
|
}
|
|
|
|
export default nextConfig
|