aboutsummaryrefslogblamecommitdiffstats
path: root/app/vite.config.ts
blob: e34d72af622238021e85c648b08df571649740ec (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                         
                                                   
                             


                   
                      
    


                  




                                            
                                            




                                                                                  
                                  



                                    
           
          
                              

                                 
                                                        
       
      
   
import { purgeCss } from 'vite-plugin-tailwind-purgecss';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { SvelteKitPWA } from '@vite-pwa/sveltekit';

export default defineConfig({
  build: {
    sourcemap: true
  },
  css: {
    devSourcemap: true
  },
  plugins: [
    sveltekit(),
    purgeCss(),
    SvelteKitPWA({
      devOptions: {
        enabled: true,
        type: 'module'
      },
      manifest: {
        name: "RossTheRoss' Personal Tools",
        short_name: 'Random Dumping Ground',
        display: 'fullscreen',
        display_override: ['window-controls-overlay', 'standalone', 'minimal-ui'],
        icons: [
          {
            src: '/favicon.svg',
            sizes: 'any',
            type: 'image/svg+xml',
            purpose: 'maskable'
          },
          {
            src: '/pwa-512x512.png',
            sizes: '512x512',
            type: 'image/png'
          }
        ],
        id: '/',
        theme_color: '#000000'
      },
      registerType: 'autoUpdate',
      workbox: {
        globPatterns: ['client/**/*.{js,css,html,svg}'],
        cleanupOutdatedCaches: true
      }
    })
  ]
});