Files
Frontend/next.config.ts
T

9 lines
159 B
TypeScript
Raw Normal View History

2026-02-19 01:15:36 +03:30
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
basePath: process.env.BASEPATH,
output: 'standalone'
}
export default nextConfig