jellyfin-vue/nuxt.config.ts

323 lines
7.7 KiB
TypeScript
Raw Normal View History

/* eslint-disable @typescript-eslint/ban-ts-comment */
2020-09-02 18:34:50 +00:00
import type { NuxtConfig } from '@nuxt/types';
import webpack from 'webpack';
2020-09-02 18:34:50 +00:00
const config: NuxtConfig = {
/*
** Nuxt rendering mode
** See https://nuxtjs.org/api/configuration-mode
*/
2021-01-19 01:51:17 +00:00
ssr: !!process.env.NUXT_SSR,
2020-11-09 21:00:34 +00:00
/*
** Disables telemetry prompt while installing dependencies
** See https://github.com/nuxt/telemetry
*/
2020-11-09 21:00:34 +00:00
telemetry: false,
2020-09-02 18:34:50 +00:00
/*
** Nuxt target
** See https://nuxtjs.org/api/configuration-target
*/
2020-09-03 05:57:42 +00:00
target: 'server',
/*
** Module loading mode
** See https://nuxtjs.org/api/configuration-modern
*/
modern: 'client',
/*
** Progress bar between routes
** See https://nuxtjs.org/api/configuration-loading
*/
loading: {
color: '#00A4DC',
failedColor: '#FF5252',
height: '4px'
},
pwa: {
meta: {
nativeUI: true,
appleStatusBarStyle: 'black-translucent',
name: 'Jellyfin',
2021-02-22 21:05:11 +00:00
theme_color: '#1c2331'
},
manifest: {
name: 'Jellyfin',
2021-02-22 21:05:11 +00:00
background_color: '#14141F'
}
},
2020-09-02 18:34:50 +00:00
/*
** Headers of the page
** See https://nuxtjs.org/api/configuration-head
*/
head: {
2020-09-19 02:03:59 +00:00
titleTemplate: '%s - Jellyfin',
title: 'Jellyfin',
2020-09-02 18:34:50 +00:00
meta: [
{ charset: 'utf-8' },
{
name: 'viewport',
content:
'width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover'
},
2020-09-02 18:34:50 +00:00
{
hid: 'description',
name: 'description',
content: process.env.npm_package_description || ''
}
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
},
/*
** Global CSS
*/
css: ['~/assets/global.scss', '@mdi/font/css/materialdesignicons.css'],
2020-09-02 18:34:50 +00:00
/*
** Plugins to load before mounting the App
** https://nuxtjs.org/guide/plugins
*/
plugins: [
// Development
'plugins/axe.ts',
// General
'plugins/persistedState.ts',
'plugins/appInitPlugin.ts',
'plugins/veeValidate.ts',
'plugins/nativeWebsocketPlugin.ts',
// Components
2021-01-19 01:51:17 +00:00
{ src: 'plugins/components/swiper.ts', mode: 'client' },
2020-09-25 22:45:22 +00:00
'plugins/components/vueVirtualScroller.ts',
'plugins/components/veeValidate.ts',
2021-01-19 17:57:30 +00:00
'plugins/components/vueDraggable.ts',
// Utility
2021-01-19 01:51:17 +00:00
{ src: 'plugins/browserDetection.ts', mode: 'client' },
{ src: 'plugins/playbackProfile.ts', mode: 'client' },
'plugins/apiPlugin.ts'
],
2020-09-02 18:34:50 +00:00
/*
** Auto import components
** See https://nuxtjs.org/api/configuration-components
*/
2021-02-18 15:30:06 +00:00
components: [{ path: '~/components', pathPrefix: false }],
2020-09-02 18:34:50 +00:00
/*
** Nuxt.js dev-modules
*/
buildModules: [
'@nuxt/typescript-build',
// Doc: https://github.com/nuxt-community/stylelint-module
'@nuxtjs/stylelint-module',
2020-10-22 17:17:15 +00:00
'@nuxtjs/vuetify',
'@nuxtjs/date-fns',
'@nuxtjs/imagemin'
2020-09-02 18:34:50 +00:00
],
/*
** Nuxt.js modules
*/
modules: [
2020-09-05 21:27:26 +00:00
'nuxt-i18n',
[
'nuxt-vuex-localstorage',
{
localStorage: ['user', 'deviceProfile']
}
],
2020-09-05 21:27:26 +00:00
// Doc: https://axios.nuxtjs.org/usage
2020-09-02 18:34:50 +00:00
'@nuxtjs/axios',
'@nuxtjs/auth'
2020-09-02 18:34:50 +00:00
],
/*
** Router configuration
*/
router: {
middleware: ['auth']
},
2020-09-02 18:34:50 +00:00
/*
** Axios module configuration
** See https://axios.nuxtjs.org/options
*/
2020-11-26 07:39:36 +00:00
axios: {
baseURL: ''
},
/*
** Axios-based Authentication
** See https://auth.nuxtjs.org/schemes/local.html#options
*/
auth: {
redirect: {
login: '/login',
logout: '/login',
callback: false,
home: '/'
},
strategies: {
jellyfin: {
_scheme: '~/schemes/jellyfinScheme'
}
},
cookie: {
prefix: 'auth.',
options: {
path: '/'
}
}
},
2020-09-05 21:27:26 +00:00
i18n: {
locales: [
{ code: 'cs', iso: 'cs-CZ', name: 'Čeština', file: 'cs.json' },
{ code: 'de', iso: 'de-DE', name: 'Deutsch', file: 'de.json' },
2021-01-24 14:14:51 +00:00
{ code: 'enUS', iso: 'en-US', name: 'English', file: 'en-US.json' },
2020-10-15 22:21:47 +00:00
{ code: 'es', iso: 'es-ES', name: 'Español (España)', file: 'es.json' },
{ code: 'fr', iso: 'fr-FR', name: 'Français', file: 'fr-FR.json' },
{ code: 'nb', iso: 'nb-NO', name: 'Norsk', file: 'nb_NO.json' },
{ code: 'nl', iso: 'nl-NL', name: 'Nederlands', file: 'nl.json' },
2020-09-17 21:47:29 +00:00
{ code: 'pl', iso: 'pl-PL', name: 'Polski', file: 'pl.json' },
{ code: 'ro', iso: 'ro-RO', name: 'Română', file: 'ro.json' },
2020-09-17 21:47:29 +00:00
{ code: 'sk', iso: 'sk-SK', name: 'Slovenčina', file: 'sk.json' },
{ code: 'sl', iso: 'sl-SI', name: 'Slovenščina', file: 'sl.json' },
{ code: 'sv', iso: 'sv-SE', name: 'Svenska', file: 'sv.json' },
2020-09-17 21:47:29 +00:00
{ code: 'ta', iso: 'ta-IN', name: 'தமிழ்', file: 'ta.json' },
{ code: 'tr', iso: 'tr-TR', name: 'Türkçe', file: 'tr.json' },
2020-10-04 08:37:43 +00:00
{ code: 'vi', iso: 'vi-VN', name: 'Tiếng Việt', file: 'vi.json' },
2021-01-24 14:14:51 +00:00
{ code: 'zhCN', iso: 'zh_Hans', name: '简体中文', file: 'zh_Hans.json' }
2020-09-05 21:27:26 +00:00
],
lazy: true,
langDir: 'locales/',
strategy: 'no_prefix',
2021-01-24 14:14:51 +00:00
defaultLocale: 'enUS',
vueI18n: {
2021-01-24 14:14:51 +00:00
fallbackLocale: 'enUS'
}
2020-09-05 21:27:26 +00:00
},
dateFns: {
2020-12-17 23:04:02 +00:00
locales: [
'cs',
'de',
'enUS',
'es',
'fr',
'nb',
'nl',
'pl',
'ro',
'sk',
'sl',
'sv',
'ta',
'tr',
'vi',
'zhCN'
],
defaultLocale: 'enUS'
},
2020-09-02 18:34:50 +00:00
/*
** vuetify module configuration
** https://github.com/nuxt-community/vuetify-module
*/
vuetify: {
customVariables: ['~/assets/variables.scss'],
2020-10-22 17:17:15 +00:00
treeShake: true,
defaultAssets: false,
2020-09-02 18:34:50 +00:00
theme: {
dark: true,
default: 'dark',
disable: false,
themes: {
dark: {
primary: '#0086b3',
secondary: '#2f3951',
accent: '#FF4081',
info: '#0099CC',
warning: '#FB8C00',
error: '#FF5252',
success: '#4CAF50',
background: '#14141F',
track: '#1c2331',
thumb: '#252e41'
2020-09-10 18:33:48 +00:00
},
light: {
primary: '#00A4DC',
secondary: '#424242',
accent: '#FF4081',
info: '#33b5e5',
warning: '#FB8C00',
error: '#FF5252',
success: '#4CAF50',
background: '#f2f2f2',
track: '#FFFFFF',
thumb: '#000000'
}
},
options: {
customProperties: true
}
2020-09-02 18:34:50 +00:00
}
},
loadingIndicator: {
name: 'circle',
color: '#0086b3',
background: '#14141F'
},
2020-09-02 18:34:50 +00:00
/*
** Build configuration
** See https://nuxtjs.org/api/configuration-build/
*/
2020-09-17 12:05:36 +00:00
build: {
loadingScreen: {
image: 'icon.png',
colors: {
client: '#00A4DC',
modern: '#aa5cc3',
server: '#424242'
}
},
2020-09-17 12:05:36 +00:00
babel: {
// envName: server, client, modern
// eslint-disable-next-line @typescript-eslint/no-explicit-any
presets(): any {
2020-09-17 12:05:36 +00:00
return [
[
'@nuxt/babel-preset-app',
{
corejs: { version: 3 }
}
]
];
}
},
extend(
config: webpack.Configuration,
{ isClient }: { isClient: boolean }
): void {
if (isClient) {
// Web Worker support
config.module?.rules.push({
test: /\.worker\.(js|ts)$/i,
use: [
{
loader: 'comlink-loader',
options: {
singleton: true
}
}
]
});
}
},
transpile: ['@nuxtjs/auth', 'vee-validate/dist/rules']
2020-09-17 12:05:36 +00:00
},
/**
* Host set to 0.0.0.0 in order to access the dev server on the LAN
*/
server: {
host: '0.0.0.0'
}
2020-09-02 18:34:50 +00:00
};
// Add context-dependent modules to the build
if (process.env.NUXT_SSR) {
config.buildModules?.push('@nuxtjs/pwa');
} else {
config.modules?.push('@nuxtjs/pwa');
}
2020-09-02 18:34:50 +00:00
export default config;