Skip to content

Commit

Permalink
add next config
Browse files Browse the repository at this point in the history
  • Loading branch information
haochengxu committed Sep 24, 2023
1 parent f5f14c2 commit 8b680a7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: 'export',
images: {
unoptimized: true
}

// 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 8b680a7

Please sign in to comment.