Skip to content

Commit

Permalink
ci: update next config
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Nov 3, 2024
1 parent ae6c2aa commit e5c7674
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 6 additions & 5 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: {
unoptimized: true,
},
};
basePath: '',
trailingSlash: true,
}

export default nextConfig;
module.exports = nextConfig
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
"deploy": "npm run build && touch out/.nojekyll"
},
"dependencies": {
"class-variance-authority": "^0.7.0",
Expand Down

0 comments on commit e5c7674

Please sign in to comment.