open source is social v-it.org
at main 10 lines 289 B view raw
1// SPDX-License-Identifier: MIT 2// Copyright (c) 2026 sol pbc 3 4import envPaths from 'env-paths'; 5import { join } from 'node:path'; 6 7const paths = envPaths('vit', { suffix: '' }); 8 9export const configDir = paths.config; 10export const configPath = (filename) => join(paths.config, filename);