aaronjy-me/next.config.mjs
2024-03-12 23:28:59 +00:00

8 lines
209 B
JavaScript

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