minor stuff

This commit is contained in:
sameeranageshwar
2026-04-11 14:28:52 -04:00
parent 92259db8a0
commit 22298fab1a
31 changed files with 1249 additions and 493 deletions
+33
View File
@@ -0,0 +1,33 @@
import tailwindcss from '@tailwindcss/vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { SvelteKitPWA } from '@vite-pwa/sveltekit';
export default defineConfig({
plugins: [
tailwindcss(),
sveltekit(),
SvelteKitPWA({
manifest: {
name: 'EchoNode',
short_name: 'EchoNode',
description: 'Campus noise mapping and intervention.',
theme_color: '#0f172a', /* slate-900 */
background_color: '#0f172a',
display: 'standalone',
icons: [
{
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png'
}
]
}
})
]
});