diff --git a/next.config.js b/next.config.js index 934db83..01111ff 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,17 @@ -// next.config.js -module.exports = { - basePath: '/Flopsky.github.io', - // other configurations... -}; +/** + * @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 = nextConfig \ No newline at end of file