Skip to content

Commit

Permalink
🚀 Deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoyasir committed Apr 14, 2024
1 parent 4263fb6 commit 7d79423
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/** @type {import('next').NextConfig} */
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: 'export',
}

module.exports = 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 7d79423

Please sign in to comment.