Helgi
Helgi
NNuxt
Created by Helgi on 10/28/2024 in #❓・help
Not getting correct version in @nuxtjs/strapi module
Ohh, but why would they update the documentation so well in advance of the actual release? -_-
21 replies
NNuxt
Created by Helgi on 10/28/2024 in #❓・help
Not getting correct version in @nuxtjs/strapi module
Yes, and it seems that it defaults to v4. As I said in the initial post, I've inspected the package in my node_modules folder, and there too I only find this: node_modules/@nuxtjs/strapi/dist/module.d.ts
/**
* Strapi Version
* @default 'v4'
* @type string
* @example 'v3'
*/
version?: 'v4' | 'v3';
/**
* Strapi Version
* @default 'v4'
* @type string
* @example 'v3'
*/
version?: 'v4' | 'v3';
21 replies
NNuxt
Created by Helgi on 10/28/2024 in #❓・help
Not getting correct version in @nuxtjs/strapi module
@hiimmox, yes I am using the newest version of Nuxt, as well as the newest version of the strapi module. You can reproduce this error with three lines of batch code. Reported as an issue on GitHub. https://github.com/nuxt-modules/strapi/issues/440
21 replies
NNuxt
Created by Helgi on 10/28/2024 in #❓・help
Not getting correct version in @nuxtjs/strapi module
@kapa.ai In the Github repository I can clearly see support for v5
21 replies
NNuxt
Created by Helgi on 10/28/2024 in #❓・help
Not getting correct version in @nuxtjs/strapi module
@kapa.ai the documentation @nuxtjs/strapi explicitly use v5 in their "getting started" example. This should exist...
21 replies
NNuxt
Created by Helgi on 3/5/2023 in #❓・help
Issue with @nuxtjs/recaptcha
Oh, so maybe adding this functionality manually is the way to go then 🤔
3 replies
NNuxt
Created by Helgi on 3/2/2023 in #❓・help
Deploying Nuxt3 as Static Web App in Azure
It seems I fixed it by adding: nuxt.config.ts
export default defineNuxtConfig({
...
nitro: {
preset: 'azure'
}
...
});
export default defineNuxtConfig({
...
nitro: {
preset: 'azure'
}
...
});
2 replies
NNuxt
Created by Helgi on 2/28/2023 in #❓・help
Trouble with dynamic assets
Ok, so the public folder is the way to go. But out of curiosity, how would I reconfigure Vite to allow this?
8 replies
NNuxt
Created by Helgi on 2/28/2023 in #❓・help
Trouble with dynamic assets
I was hoping to understand how I could dynamically access images in the assets folder instead of using an alternate approach. Or does this mean that accessing images from the assets folder is not a nuxt3 thing?
8 replies