Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Bruno Predot
/
tmdb_test
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Bruno Predot
2025-04-23 19:45:54 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
38809be91bf1c17993177b2001df237eedbe7782
38809be9
1 parent
bd87d025
Ajout composable tMDB.
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
CHANGELOG.md
composables/tMDB.ts
CHANGELOG.md
View file @
38809be
...
...
@@ -2,6 +2,7 @@
-
Ajout fichier .prettierignore.
-
Installation module vuetify + modif script lint dans package.json.
-
Installation de lucide-vue-next pour librairie d'icônes.
-
Ajout composable tMDB.
0.
1.1:
-
Installation et configuration d'eslint et prettier.
...
...
composables/tMDB.ts
0 → 100644
View file @
38809be
import
type
{
RuntimeConfig
}
from
"nuxt/schema"
;
export
const
useTMDB
=
function
()
{
const
runtimeconfig
:
RuntimeConfig
=
useRuntimeConfig
();
const
apiUrl
=
runtimeconfig
.
public
.
apiTMDBUrl
;
const
apiKey
=
runtimeconfig
.
public
.
apiTMDBSecret
;
return
{
apiUrl
,
apiKey
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment