Skip to content

Commit 71aee2d

Browse files
committed
fix
1 parent 69a02b0 commit 71aee2d

File tree

5 files changed

+227
-11
lines changed

5 files changed

+227
-11
lines changed

blog-markdown-generator/components/ui/input.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import * as React from "react"
22

33
import { cn } from "@/lib/utils"
44

5+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
56
export interface InputProps
67
extends React.InputHTMLAttributes<HTMLInputElement> {}
78

blog-markdown-generator/components/ui/textarea.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import * as React from "react"
22

33
import { cn } from "@/lib/utils"
44

5+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
56
export interface TextareaProps
67
extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}
78

blog-markdown-generator/next.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
44
/* config options here */
5+
output: 'export',
6+
basePath: '/Gist-Blog-Generator',
7+
images: {
8+
unoptimized: true
9+
}
510
};
611

7-
export default nextConfig;
12+
export default nextConfig;

blog-markdown-generator/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
2-
"name": "blog-markdown-generator",
2+
"name": "@xynox/generator",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start",
9-
"lint": "next lint"
9+
"lint": "next lint",
10+
"predeploy": "pnpm run build",
11+
"deploy": "gh-pages -d out"
1012
},
1113
"dependencies": {
1214
"@radix-ui/react-label": "^2.1.0",
@@ -28,6 +30,7 @@
2830
"@types/react-dom": "^18",
2931
"eslint": "^8",
3032
"eslint-config-next": "15.0.3",
33+
"gh-pages": "^6.3.0",
3134
"postcss": "^8",
3235
"tailwindcss": "^3.4.1",
3336
"typescript": "^5"

0 commit comments

Comments
 (0)