8 lines
326 B
JavaScript
8 lines
326 B
JavaScript
|
import * as path from "path"
|
||
|
import { fileURLToPath } from "url"
|
||
|
|
||
|
export const flavors = ["#reflectivedetective", "#alearfred"]
|
||
|
export const variety = 200
|
||
|
export const PORT = process.env.PORT || 8080
|
||
|
export const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
||
|
export const staticPath = path.join(__dirname, "static")
|