mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-05-04 05:11:49 +00:00
10 lines
278 B
TypeScript
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`
|
|
};
|