From 0b5cdd92f835c3a321b1ede5505ba44c7eeda4aa Mon Sep 17 00:00:00 2001 From: Teh PeGaSuS Date: Sun, 26 Apr 2026 21:36:50 +0200 Subject: [PATCH] Add config.js --- config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config.js diff --git a/config.js b/config.js new file mode 100644 index 0000000..c07a894 --- /dev/null +++ b/config.js @@ -0,0 +1,18 @@ +export const SITE_CONFIG = { + title: "DevBin", + pageTitle: "DevBin // Private Code Sharing", + editorTitle: "Create New Paste", + + // Expiry Options: Comment out what you don't need + expiryOptions: [ + { label: "Burn on Read", value: "burn" }, + { label: "10 Minutes", value: "10m" }, + { label: "1 Hour", value: "1h" }, + { label: "12 Hours", value: "12h" }, + { label: "1 Day", value: "1d" }, + { label: "1 Week", value: "1w" }, + // { label: "1 Month", value: "1m" }, + // { label: "1 Year", value: "1y" }, + { label: "Never Expire", value: "never" }, + ] +};