Add manifest for PWA

This commit is contained in:
Ariful Alam 2023-05-21 22:28:20 +06:00
parent ce2711fbdf
commit 90f38bec5f

View File

@ -10,7 +10,25 @@ export default defineConfig({
// If you are deploying to https://<USERNAME>.github.io/, set base to '/'. // If you are deploying to https://<USERNAME>.github.io/, set base to '/'.
// If you are deploying to https://<USERNAME>.github.io/<REPO>/, for example your repository is at https://github.com/<USERNAME>/<REPO>, then set base to '/<REPO>/'. // If you are deploying to https://<USERNAME>.github.io/<REPO>/, for example your repository is at https://github.com/<USERNAME>/<REPO>, then set base to '/<REPO>/'.
base: '/gitprofile/', base: '/gitprofile/',
plugins: [react(), VitePWA({ registerType: 'autoUpdate' })], plugins: [
react(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['logo.png'],
manifest: {
name: 'Portfolio',
short_name: 'Portfolio',
description: 'Personal Portfolio',
icons: [
{
src: 'logo.png',
sizes: '64x64 32x32 24x24 16x16 192x192 512x512',
type: 'image/png',
},
],
},
}),
],
css: { css: {
postcss: { postcss: {
plugins: [tailwind(tailwindConfig), autoprefixer], plugins: [tailwind(tailwindConfig), autoprefixer],