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

13 lines
276 B
JavaScript
Raw Normal View History

2022-06-03 01:31:07 -04:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-07-07 19:52:43 -04:00
trailingSlash: true,
2022-10-22 14:04:12 -04:00
// This image loader supports `next export`, for optimizing next <Image /> tags
images: {
loader: 'akamai',
path: '',
},
2022-06-03 01:31:07 -04:00
}
module.exports = nextConfig