From b634f7155384e8e315dce3760101a545164531af Mon Sep 17 00:00:00 2001 From: Jorsch-0 Date: Sat, 25 Nov 2023 12:48:11 -0500 Subject: [PATCH] next config --- next.config.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index cbf24a2..5c89287 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,21 @@ +/** + * @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', +} + module.exports = { reactStrictMode: true, - swcMinify: true + swcMinify: true, + ...nextConfig }