File tree Expand file tree Collapse file tree 5 files changed +227
-11
lines changed Expand file tree Collapse file tree 5 files changed +227
-11
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import * as React from "react"
2
2
3
3
import { cn } from "@/lib/utils"
4
4
5
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
5
6
export interface InputProps
6
7
extends React . InputHTMLAttributes < HTMLInputElement > { }
7
8
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import * as React from "react"
2
2
3
3
import { cn } from "@/lib/utils"
4
4
5
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
5
6
export interface TextareaProps
6
7
extends React . TextareaHTMLAttributes < HTMLTextAreaElement > { }
7
8
Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ import type { NextConfig } from "next";
2
2
3
3
const nextConfig : NextConfig = {
4
4
/* config options here */
5
+ output : 'export' ,
6
+ basePath : '/Gist-Blog-Generator' ,
7
+ images : {
8
+ unoptimized : true
9
+ }
5
10
} ;
6
11
7
- export default nextConfig ;
12
+ export default nextConfig ;
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " blog-markdown- generator" ,
2
+ "name" : " @xynox/ generator" ,
3
3
"version" : " 0.1.0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"dev" : " next dev" ,
7
7
"build" : " next build" ,
8
8
"start" : " next start" ,
9
- "lint" : " next lint"
9
+ "lint" : " next lint" ,
10
+ "predeploy" : " pnpm run build" ,
11
+ "deploy" : " gh-pages -d out"
10
12
},
11
13
"dependencies" : {
12
14
"@radix-ui/react-label" : " ^2.1.0" ,
28
30
"@types/react-dom" : " ^18" ,
29
31
"eslint" : " ^8" ,
30
32
"eslint-config-next" : " 15.0.3" ,
33
+ "gh-pages" : " ^6.3.0" ,
31
34
"postcss" : " ^8" ,
32
35
"tailwindcss" : " ^3.4.1" ,
33
36
"typescript" : " ^5"
You can’t perform that action at this time.
0 commit comments