We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae6c2aa commit e5c7674Copy full SHA for e5c7674
next.config.ts
@@ -1,10 +1,11 @@
1
-import type { NextConfig } from "next";
2
-
3
-const nextConfig: NextConfig = {
+/** @type {import('next').NextConfig} */
+const nextConfig = {
4
output: 'export',
5
images: {
6
unoptimized: true,
7
},
8
-};
+ basePath: '',
+ trailingSlash: true,
9
+}
10
-export default nextConfig;
11
+module.exports = nextConfig
package.json
@@ -7,7 +7,9 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
- "lint": "next lint"
+ "lint": "next lint",
+ "export": "next build && next export",
12
+ "deploy": "npm run build && touch out/.nojekyll"
13
14
"dependencies": {
15
"class-variance-authority": "^0.7.0",
0 commit comments