Co-authored-by: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Reviewed-on: #1
11 lines
247 B
JavaScript
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
|