Skip to content

Commit

Permalink
config
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamgang Nintcheu David committed Dec 31, 2023
1 parent 929139b commit 444eef6
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 444eef6

Please sign in to comment.