jbrundagejr
jbrundagejr
Explore posts from servers
NNuxt
Created by jbrundagejr on 1/29/2025 in #❓・help
okta integration
hello all: I'm trying to add Okta to my Nuxt 3.14 app and am struggling to find good documentation. I've been following along this guide from Okta but am struggling with the redirect page. Does anyone else have a solid example of how to use Okta with NUXT? Thanks in advance!! https://developer.okta.com/docs/guides/sign-into-spa-redirect/vue/main/
4 replies
NNuxt
Created by jbrundagejr on 1/8/2025 in #❓・help
dynamic route getRouterParams not updated
No description
5 replies
NNuxt
Created by jbrundagejr on 6/13/2023 in #❓・help
Robot.txt file?
I recently deployed a new NUXT build and am failing the SEO audit for my robots.txt file in Lighthouse. I found the nuxtjs/robots module on NPM - is that the way to generate the robot.txt file dynamically?
4 replies
NNuxt
Created by jbrundagejr on 12/30/2022 in #❓・help
Local Fonts Not Loading
Hey friends- I thought I followed the docs on using a local font, but I am not getting them. Any thoughts on where I am going wrong? nuxt.config.ts
export default defineNuxtConfig({
css: [
"@/css/fonts.css",
"@/css/mobile.css"
],
});
export default defineNuxtConfig({
css: [
"@/css/fonts.css",
"@/css/mobile.css"
],
});
/css/fonts.css
@font-face {
font-family: "Grotesk";
src: url("~/assets/fonts/Grotesk-Regular.otf") format("otf");
font-display: swap;
}
@font-face {
font-family: "Grotesk";
src: url("~/assets/fonts/Grotesk-Regular.otf") format("otf");
font-display: swap;
}
/css/mobile.css
h1 {
font-family: 'Grotesk'
}
h1 {
font-family: 'Grotesk'
}
assets folder is in the root of the project with the fonts folder inside of it. Any help would be appreciated!!
3 replies