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".
|
2024-06-02 23:19:40 -04:00
|
|
|
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`
|
2024-06-02 23:19:40 -04:00
|
|
|
distDir: 'docker/out',
|
2024-05-06 01:57:58 -04:00
|
|
|
};
|
2024-03-09 22:17:44 -05:00
|
|
|
|
|
|
|
export default nextConfig;
|