Files
seanime/seanime-web/next.config.js
2023-12-21 19:50:10 -05:00

11 lines
206 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
distDir: 'web',
cleanDistDir: true,
images: {
unoptimized: true,
},
}
module.exports = nextConfig