theplay3r
theplay3r
Explore posts from servers
NNuxt
Created by theplay3r on 8/7/2024 in #❓・help
app.baseURL being ignored
Hey, I'm trying to generate a static page using Nuxt 3.12.4, but by default, it uses links with href=/_nuxt/.. and this doesn't work for me. What I'm trying to get are relative paths - eg. href=./_nuxt/.. and upon some researching, I found out about the app.baseURL config property. Setting this property for example to /test/ works fine, my links look like href=/test/_nuxt/... However, setting this property to ./ seems to get ignored and I end up with the default links href=/_nuxt/... Why is that? Is there any other way for me to achieve my goal? This is my config:
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
app: {
baseURL: './'
}
})
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
app: {
baseURL: './'
}
})
I have a brand new Nuxt project with nothing added to it.
3 replies
KKinde
Created by theplay3r on 1/19/2024 in #💻┃support
Java SDK Support for Spring Boot 3
Hey, a few days back I've created this issue on GitHub - https://github.com/kinde-oss/kinde-java-sdk/issues/4. It's mostly about moving from Spring Boot 2 to Spring Boot 3 with the SDK, because unfortunately backwards compatibility from 3 to 2 is not possible. This is mainly due to the shift from javax.* imports to jakarta.* imports. I've also created a pull request handling the update, which seemed to be straight forward with tests somehow passing on 1st try. https://github.com/kinde-oss/kinde-java-sdk/pull/6 Other than moving from Spring Boot 2 to Spring Boot 3, I've also updated the Java version to 17 (requirement of Spring Boot 3) and let IntelliJ do an automatic cleanup of the code, so that future contributors have somewhat of a better time working with the project. I don't see any real issues with the library being up-to-date, on the contrary, I think it's the best thing to do. Is this something likely to be included in the SDK, or would it be better for me to do a hard fork of and be on my own?
2 replies