eexiv/next.config.mjs

11 lines
175 B
JavaScript
Raw Normal View History

2024-02-09 19:00:26 -08:00
/** @type {import('next').NextConfig} */
2024-02-11 11:16:49 -08:00
const nextConfig = {
output: 'export',
basePath: '/eexiv-2',
images: {
unoptimized: true,
},
}
2024-02-09 19:00:26 -08:00
2024-02-11 11:16:49 -08:00
export default nextConfig