generated from Goyslop/vite-vue-webext
11 lines
379 B
TypeScript
11 lines
379 B
TypeScript
import { resolve } from 'node:path'
|
|
import { bgCyan, black } from 'kolorist'
|
|
|
|
export const port = parseInt(process.env.PORT || '') || 3303
|
|
export const r = (...args: string[]) => resolve(__dirname, '..', ...args)
|
|
export const isDev = process.env.NODE_ENV !== 'production'
|
|
|
|
export function log(name: string, message: string) {
|
|
console.log(black(bgCyan(` ${name} `)), message)
|
|
}
|