mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-27 05:24:22 -04:00

To clean up the config folder, all mocks are now in it's own folder. Signed-off-by: Philip Molares <philip.molares@udo.edu>
16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('mediaConfig', () => ({
|
|
backend: {
|
|
use: 'filesystem',
|
|
filesystem: {
|
|
uploadPath: 'uploads',
|
|
},
|
|
},
|
|
}));
|