Skip to content

Commit

Permalink
next config
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorsch-0 committed Nov 25, 2023
1 parent 81cdd98 commit b634f71
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
/**
* @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 = {
reactStrictMode: true,
swcMinify: true
swcMinify: true,
...nextConfig
}

0 comments on commit b634f71

Please sign in to comment.