# No Sync Scripts ### Why This Error Occurred A synchronous script was used which can impact your webpage's performance. ### Possible Ways to Fix It #### Script component (experimental) Use the Script component with the right loading strategy to defer loading of the script until necessary. ```jsx import Script from 'next/script' const Home = () => { return (
Home Page
) } export default Home ``` ### Useful Links - [Efficiently load third-party JavaScript](https://web.dev/efficiently-load-third-party-javascript/)