assistant-todo/next.config.mjs

15 lines
432 B
JavaScript
Raw 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 = {
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: 'dist',
2024-05-06 01:57:58 -04:00
};
2024-03-09 22:17:44 -05:00
export default nextConfig;