aaronjy-me/next.config.mjs
Aaron Yarborough 205522acc9 Add library feature (#1)
Co-authored-by: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com>
Reviewed-on: #1
2025-03-29 11:44:02 +00:00

11 lines
247 B
JavaScript

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