style: Update default theme

This commit is contained in:
2026-05-25 16:51:44 +02:00
parent 155fe20862
commit 1259645706
23 changed files with 1206 additions and 630 deletions

View File

@@ -0,0 +1,10 @@
import { copyFileSync, mkdirSync } from 'node:fs';
import { dirname, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';
const websiteRoot = resolve(dirname(fileURLToPath(import.meta.url)), '..');
const source = resolve(websiteRoot, 'public/web.config');
const destination = resolve(websiteRoot, 'dist/toju-website/web.config');
mkdirSync(dirname(destination), { recursive: true });
copyFileSync(source, destination);