Added PWA functionality
This commit is contained in:
parent
fecce68262
commit
7c601dbea3
4007
package-lock.json
generated
4007
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -59,7 +59,8 @@
|
||||
"react-hotjar": "^6.1.0",
|
||||
"react-icons": "^4.3.1",
|
||||
"tailwindcss": "^3.0.23",
|
||||
"vite": "^4.0.3"
|
||||
"vite": "^4.0.3",
|
||||
"vite-plugin-pwa": "^0.14.4"
|
||||
},
|
||||
"keywords": [
|
||||
"git-profile",
|
||||
|
||||
@ -3,13 +3,14 @@ import react from '@vitejs/plugin-react';
|
||||
import tailwind from 'tailwindcss';
|
||||
import autoprefixer from 'autoprefixer';
|
||||
import tailwindConfig from './tailwind.config.mjs';
|
||||
import { VitePWA } from 'vite-plugin-pwa';
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
// 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>/'.
|
||||
base: '/gitprofile/',
|
||||
plugins: [react()],
|
||||
plugins: [react(), VitePWA({ registerType: 'autoUpdate' })],
|
||||
css: {
|
||||
postcss: {
|
||||
plugins: [tailwind(tailwindConfig), autoprefixer],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user