Next.js - Küresel CSS Desteği
Next.js'de, tüm sayfalara uygulanacak global stiller oluşturalım.
Bu örnekte, _app.js bileşenini kullanarak tüm bileşenlerde kullanılacak bir styles.css oluşturacağız.
CSS Desteği bölümünde kullanılan nextjs projesini güncelleyelim .
Önce kök seviyesinde bir stil dizini oluşturun ve aşağıdaki gibi bir dosya styles.css ekleyin -
html,
body {
padding: 0;
margin: 0;
line-height: 1.6;
font-size: 18px;
background-color: lime;
}
* {
box-sizing: border-box;
}
a {
color: #0070f3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
display: block;
}
Sayfalar dizininde _app.js dosyası oluşturun
import '../styles/styles.css'
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />
}
Next.js Sunucusunu Başlatın
Sunucuyu başlatmak için aşağıdaki komutu çalıştırın -.
npm run dev
> [email protected] dev \Node\nextjs
> next
ready - started server on http://localhost:3000
event - compiled successfully
event - build page: /
wait - compiling...
event - compiled successfully
event - build page: /next/dist/pages/_error
wait - compiling...
event - compiled successfully
Çıkışı Doğrula
Bir tarayıcıda localhost: 3000'i açın ve aşağıdaki çıktıyı göreceksiniz.
İlk gönderi bağlantısına tıklayın.