0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-05-04 05:11:49 +00:00
Files
jellyfin-vue/frontend/scripts/paths.ts
Fernando Fernández f816728e05 style: automatic eslint fix
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2024-04-16 11:25:09 +02:00

10 lines
278 B
TypeScript

import { resolve } from 'node:path';
export const localeFilesFolder = resolve('locales/**');
export const srcRoot = `${resolve('src')}/`;
export const entrypoints = {
index: resolve('index.html'),
main: `${srcRoot}/main.ts`,
splashscreen: `${srcRoot}/splashscreen.ts`
};