aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/license.ts
blob: d9c8ffec13617207a60322240997d37def276c7b (plain) (blame)
1
2
3
4
5
6
7
import * as license from "$/../LICENSE?raw";

export default (typeof license === "string"
  ? license
  : "default" in license
  ? license.default
  : JSON.stringify(license, null, 2)) as string;