assistant-todo/next.config.mjs

16 lines
491 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Middleware cannot be used with "output: export".
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: 'docker/out',
};
export default nextConfig;