aaronjy-me/next.config.mjs
Aaron Yarborough 8685340d70
Swap to static file export (#2)
* feat: export as static files

* chore: remove tests
2025-03-09 18:50:53 +00:00

8 lines
208 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