mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 17:23:16 +03:00
10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
|
|
import { RequestHandler, text } from '@sveltejs/kit';
|
||
|
|
export const GET = (async ({ locals: { api } }) => {
|
||
|
|
const { customCss } = await api.systemConfigApi.getConfig().then((res) => res.data.theme);
|
||
|
|
return text(customCss, {
|
||
|
|
headers: {
|
||
|
|
'Content-Type': 'text/css',
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}) satisfies RequestHandler;
|