1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-23 12:14:12 +02:00

Merge branch 'develop' into copilot/remove-js-yaml-runtime-dependency

This commit is contained in:
syuilo
2025-12-02 09:35:01 +09:00
committed by GitHub
74 changed files with 1556 additions and 988 deletions

View File

@@ -10,6 +10,7 @@ import { type FastifyServerOptions } from 'fastify';
import type * as Sentry from '@sentry/node';
import type * as SentryVue from '@sentry/vue';
import type { RedisOptions } from 'ioredis';
import type { ManifestChunk } from 'vite';
type RedisOptionsSource = Partial<RedisOptions> & {
host: string;
@@ -186,9 +187,9 @@ export type Config = {
authUrl: string;
driveUrl: string;
userAgent: string;
frontendEntry: { file: string | null };
frontendEntry: ManifestChunk;
frontendManifestExists: boolean;
frontendEmbedEntry: { file: string | null };
frontendEmbedEntry: ManifestChunk;
frontendEmbedManifestExists: boolean;
mediaProxy: string;
externalMediaProxyEnabled: boolean;