Sink/app/app.config.ts
wudi 7cadbfe2b1 refactor: Migrate project files and directories to the app directory using the new compatibilityVersion: 4 feature
- Moved `app.config.ts` to the `app` directory
- Migrated `.vue` files and other assets to the `app` directory
- Updated import paths to reflect the new file locations
2025-03-24 11:05:59 +08:00

16 lines
542 B
TypeScript

export default defineAppConfig({
title: 'Sink',
email: 'sink.cool@miantiao.me',
github: 'https://github.com/ccbikai/sink',
twitter: 'https://sink.cool/kai',
telegram: 'https://sink.cool/telegram',
mastodon: 'https://sink.cool/mastodon',
blog: 'https://sink.cool/blog',
description: 'A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.',
image: 'https://sink.cool/banner.png',
previewTTL: 300, // 5 minutes
slugRegex: /^[a-z0-9]+(?:-[a-z0-9]+)*$/i,
reserveSlug: [
'dashboard',
],
})