This website works better with JavaScript.
Home
Explore
Help
Sign In
valere
/
design-patterns-nuxt
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
FEAT: use native fetch 2
master
valere
5 months ago
parent
b4451bcdf2
commit
82d091b28a
4 changed files
with
3 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
nuxt.config.ts
+0
-2
server/api/details/[id].ts
+0
-2
server/api/explore/[page].ts
+0
-2
server/api/search/[termspage].ts
+ 3
- 1
nuxt.config.ts
View File
@@ -27,6 +27,8 @@ export default defineNuxtConfig({
IMG_BASE_URL: 'https://media.themoviedb.org/t/p/w220_and_h330_face/',
}
},
typescript: {
typeCheck: true
},
compatibilityDate: '2024-10-06',
})
+ 0
- 2
server/api/details/[id].ts
View File
@@ -1,5 +1,3 @@
import fetch from 'node-fetch'
export default eventHandler(async (req) => {
const id = req.context.params?.id || ''
const url = `https://api.themoviedb.org/3/movie/${id}?language=fr-FR`
+ 0
- 2
server/api/explore/[page].ts
View File
@@ -1,5 +1,3 @@
import fetch from 'node-fetch'
export default eventHandler(async (req) => {
const page = req.context.params?.page || 1
const url = `https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=${page}&sort_by=popularity.desc`
+ 0
- 2
server/api/search/[termspage].ts
View File
@@ -1,5 +1,3 @@
import fetch from 'node-fetch'
interface Film {
title: string,
seed: number,
Write
Preview
Loading…
Cancel
Save