We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d5543d commit f538c68Copy full SHA for f538c68
next.config.js
@@ -0,0 +1,17 @@
1
+/**
2
+ * @type {import('next').NextConfig}
3
+ */
4
+const nextConfig = {
5
+ output: 'export',
6
+
7
+ // Optional: Change links `/me` -> `/me/` and emit `/me.html` -> `/me/index.html`
8
+ // trailingSlash: true,
9
10
+ // Optional: Prevent automatic `/me` -> `/me/`, instead preserve `href`
11
+ // skipTrailingSlashRedirect: true,
12
13
+ // Optional: Change the output directory `out` -> `dist`
14
+ // distDir: 'dist',
15
+ }
16
17
+ module.exports = nextConfig
next.config.mjs
0 commit comments