8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
trailingSlash: true // ensure pages get their own directory in output
|
|
}
|
|
|
|
export default nextConfig
|