cs-2022-class-profile/next.config.js

13 lines
241 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
trailingSlash: true,
// This image loader supports `next export`
images: {
loader: 'akamai',
path: '/',
},
}
module.exports = nextConfig