From 7d7942329f5b43acb7daa742e80ebbe73219e3af Mon Sep 17 00:00:00 2001 From: Yasir Nawaz Date: Sun, 14 Apr 2024 18:54:02 +0500 Subject: [PATCH] :rocket: Deployment --- next.config.js | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/next.config.js b/next.config.js index 1a81897..e5beda8 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,17 @@ -/** @type {import('next').NextConfig} */ +/** + * @type {import('next').NextConfig} + */ const nextConfig = { - output: 'export', - } - - module.exports = nextConfig \ No newline at end of file + 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 = nextConfig;