assistant-todo/next.config.mjs

16 lines
491 B
JavaScript
Raw Permalink Normal View History

2024-03-09 22:17:44 -05:00
/** @type {import('next').NextConfig} */
2024-05-06 01:57:58 -04:00
const nextConfig = {
2024-05-28 06:54:58 -04:00
// Middleware cannot be used with "output: export".
output: 'export',
2024-05-08 02:15:59 -04:00
// 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',
2024-05-06 01:57:58 -04:00
};
2024-03-09 22:17:44 -05:00
export default nextConfig;