mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
/**
|
|
* Early-loaded head scripts — runs synchronously before body rendering.
|
|
*
|
|
* Aggregates all head scripts into a single entry point.
|
|
*/
|
|
import { initColorScheme } from './color-scheme'
|
|
import { initPlatform } from './platform'
|
|
|
|
initColorScheme()
|
|
initPlatform()
|