Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
at main 6 lines 251 B view raw
1import { readFileSync } from 'node:fs' 2import { fileURLToPath } from 'node:url' 3import { dirname, join } from 'node:path' 4 5const __dirname = dirname(fileURLToPath(import.meta.url)) 6export const css = readFileSync(join(__dirname, 'wisp.css'), 'utf-8')