How to use cdn like we do in reactjs inside head <link rel='stylesheet' href='' > in next js.
Answered
Cuban Crocodile posted this in #help-forum
Cuban CrocodileOP
I tried using <link rel='stylesheet' href='' > in next js for cdn but it shows error in app router. Is there a way to use cdn link in app router next js
2 Replies
put it in global.css
@import url("//url.css");Answer
Cuban CrocodileOP
Thanks it's working