mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 02:55:42 +05:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
var config;
|
|
try {
|
|
config = require("../config/config");
|
|
} catch (e) {
|
|
config = require("../config/config.example");
|
|
}
|
|
module.exports = config;
|