mirror of
https://github.com/5rahim/seanime
synced 2026-04-25 22:34:56 +02:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
distDir: 'web',
|
|
cleanDistDir: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig |