bpms_site/.svn/pristine/7a/7ae72cf6d326b4bc138b87d417d435fd6beaeadd.svn-base
2025-11-02 16:38:49 +03:30

18 lines
478 B
Plaintext

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
// Optional: Change links `/me` -> `/me/` and emit `/me.html` -> `/me/index.html`
// trailingSlash: true,
// Optional: Prevent automatic `/me` -> `/me/`, instead preserve `href`
// skipTrailingSlashRedirect: true,
// Optional: Change the output directory `out` -> `dist`
// distDir: 'dist',
images: {
unoptimized: true
}
}
module.exports = nextConfig