Skip to content

Commit c051a18

Browse files
committed
improve
1 parent 00ecdfd commit c051a18

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,5 @@ yarn-error.log*
3232

3333
# typescript
3434
*.tsbuildinfo
35-
next-env.d.ts
3635
/data
3736
public/uploads/recipes/*

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ COPY . /usr/src/app
1515
# install dependencies
1616

1717
RUN npm install -g next
18+
RUN npm install -g @heroicons/react
1819

1920
RUN npm install
2021

next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
"next-env.d.ts",
3838
"**/*.ts",
3939
"**/*.tsx",
40+
"**/*.js",
41+
"**/*.jsx",
4042
".next/types/**/*.ts",
4143
],
4244
"exclude": [

0 commit comments

Comments
 (0)