Skip to content

Commit

Permalink
fix next config?
Browse files Browse the repository at this point in the history
  • Loading branch information
dark-swordsman committed Sep 14, 2024
1 parent 9f57907 commit 505f681
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* @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 505f681

Please sign in to comment.