mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-30 01:56:05 +00:00
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
import { startingLog } from "./log";
|
|
import { runTitle } from "./changing_title";
|
|
import { injectOneko } from "./oneko";
|
|
|
|
if (process.client) {
|
|
// DOM-related logic here
|
|
// onMounted(() => {
|
|
startingLog();
|
|
runTitle();
|
|
|
|
injectOneko();
|
|
|
|
// });
|
|
}
|