Scripts in Next.js
The Problem
Scripts can slow down page load
Different scripts need different loading priorities
Some scripts block rendering, others don't need to
The Solution
Basic Usage:
import Script from 'next/script'
// Basic usage
<Script src="https://ex...
tigerabrodi.blog2 min read