19 lines
585 B
JavaScript
19 lines
585 B
JavaScript
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" },
|
|
]
|
|
};
|