add tmux sessions

This commit is contained in:
2026-01-20 14:04:19 -05:00
parent 2b50c91267
commit 66b4acaf42
37 changed files with 2888 additions and 327 deletions
+7 -16
View File
@@ -8,6 +8,9 @@ export default defineConfig({
sveltekit(),
basicSsl(),
VitePWA({
strategies: 'injectManifest',
srcDir: 'src',
filename: 'sw.ts',
registerType: 'autoUpdate',
includeAssets: ['favicon.ico', 'apple-touch-icon.png', 'mask-icon.svg'],
manifest: {
@@ -39,24 +42,12 @@ export default defineConfig({
}
]
},
workbox: {
globPatterns: ['**/*.{js,css,html,ico,png,svg,woff2}'],
runtimeCaching: [
{
urlPattern: /^https:\/\/.*\/api\/.*/i,
handler: 'NetworkFirst',
options: {
cacheName: 'api-cache',
expiration: {
maxEntries: 100,
maxAgeSeconds: 60 * 5 // 5 minutes
}
}
}
]
injectManifest: {
globPatterns: ['**/*.{js,css,html,ico,png,svg,woff2}']
},
devOptions: {
enabled: true
enabled: true,
type: 'module'
}
})
],