mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-04 04:01:26 +00:00
A modern web client for Jellyfin based on Vue
3f15681af0
Nuxt Auth expects a normal API to poll the user data on refresh, like "/user/me". Due to Jellyfin needing the user's ID to fetch their information, this commit registers a new Auth plugin and a persistent Vuex store, saved to localStorage, to perform the request manually when Nuxt starts up. It then sets all the required information before the client properly starts, meaning the information is always fresh when the user refreshes the page. |
||
---|---|---|
.ci | ||
.devcontainer | ||
.run | ||
.vscode | ||
api | ||
assets | ||
components | ||
layouts | ||
middleware | ||
pages | ||
plugins | ||
static | ||
store | ||
test | ||
types | ||
utils | ||
.babelrc | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.prettierrc | ||
commitlint.config.js | ||
jest.config.js | ||
LICENSE | ||
nuxt.config.ts | ||
package.json | ||
README.md | ||
stylelint.config.js | ||
tsconfig.json | ||
yarn.lock |
Jellyfin Vue
Part of the Jellyfin Project
This is an experimental web client for Jellyfin based on Vue.js. We welcome all contributions and pull requests! If you have a larger feature in mind please open an issue so we can discuss the implementation before you start.
Build Process
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate