mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-17 23:42:51 +00:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import os from 'os'
|
|
import path from 'path'
|
|
|
|
export const PKG_NAME = 'vite-plugin-mkcert'
|
|
|
|
export const PLUGIN_NAME = PKG_NAME.replace(/-/g, ':')
|
|
|
|
export const PLUGIN_DATA_DIR = path.join(os.homedir(), `.${PKG_NAME}`)
|