Add config.js

This commit is contained in:
2026-04-26 21:36:50 +02:00
parent 0dba8a6532
commit 0b5cdd92f8
+18
View File
@@ -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" },
]
};