mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-26 18:20:42 +00:00
14 lines
431 B
TypeScript
14 lines
431 B
TypeScript
import getAlasABSPath from './getAlasABSPath';
|
|
import fs from 'fs';
|
|
import {join} from 'path';
|
|
import {ALAS_CONFIG_TEMPLATE_YAML, ALAS_CONFIG_TEST_TEMPLATE_YAML} from '../constant/config';
|
|
export function checkIsFirst(): boolean {
|
|
const absPath = getAlasABSPath();
|
|
return fs.existsSync(
|
|
join(
|
|
absPath,
|
|
`/config/${import.meta.env.DEV ? ALAS_CONFIG_TEST_TEMPLATE_YAML : ALAS_CONFIG_TEMPLATE_YAML}`,
|
|
),
|
|
);
|
|
}
|