11 lines
309 B
TypeScript
11 lines
309 B
TypeScript
export default defineAppConfig({
|
|
title: 'Sink',
|
|
description: 'A Simple / Speedy / Secrue Link Shortener with Analytics, 100% run on Cloudflare.',
|
|
image: 'https://sink.cool/banner.png',
|
|
previewTTL: 24 * 3600, // 24h
|
|
slugRegex: /^[a-z0-9]+(?:-[a-z0-9]+)*$/i,
|
|
reserveSlug: [
|
|
'dashboard',
|
|
],
|
|
})
|