Skip to content

Instantly share code, notes, and snippets.

View vuvanthuan's full-sized avatar
🇻🇳
VietNam

Van Thuan (Austin) Vu vuvanthuan

🇻🇳
VietNam
View GitHub Profile
@itsjavi
itsjavi / components__ServiceWorkers.tsx
Last active March 5, 2025 01:12
Simple Service Worker for Next.js static assets
'use client'
import { useEffect } from 'react'
export function ServiceWorkers(): JSX.Element {
useEffect(() => {
if (typeof window === 'undefined') {
return
}
if ('serviceWorker' in navigator) {