Skip to content

Commit

Permalink
adds static build to deploy to pages (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
m10241 authored Dec 31, 2023
1 parent 390224e commit 7418506
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
/** @type {import('next').NextConfig} */
const 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 7418506

Please sign in to comment.