mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
Fix type error
This commit is contained in:
parent
4755451404
commit
a05c25da8f
|
|
@ -1,4 +1,4 @@
|
||||||
import type { MediaBackendType } from "media-manager";
|
import { MediaBackendType } from "media-manager";
|
||||||
|
|
||||||
export interface ConfigType {
|
export interface ConfigType {
|
||||||
database: {
|
database: {
|
||||||
|
|
@ -232,7 +232,7 @@ export const configDefaults: ConfigType = {
|
||||||
username: "",
|
username: "",
|
||||||
},
|
},
|
||||||
media: {
|
media: {
|
||||||
backend: "local",
|
backend: MediaBackendType.LOCAL,
|
||||||
deduplicate_media: true,
|
deduplicate_media: true,
|
||||||
conversion: {
|
conversion: {
|
||||||
convert_images: false,
|
convert_images: false,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue