feat: add asset caching (sw)

This commit is contained in:
Sonny
2025-01-03 01:59:42 +01:00
parent e2494e8cf0
commit e28d5ebea8
22 changed files with 3163 additions and 121 deletions

12
config/project.ts Normal file
View File

@@ -0,0 +1,12 @@
const PROJECT_NAME = 'MyLinks';
const PROJECT_DESCRIPTION =
'Another bookmark manager that lets you manage and share your favorite links in an intuitive interface';
const PROJECT_URL = 'https://www.mylinks.app';
const APP_COLOR = '#f0eef6';
export default {
name: PROJECT_NAME,
description: PROJECT_DESCRIPTION,
url: PROJECT_URL,
color: APP_COLOR,
};