kora
Stripe error on production
on every request at stripe i got this error but i send to stripe the api key
import Stripe from 'stripe'
const config = useRuntimeConfig()
export const stripe = new Stripe(config.STRIPE_SECRET_KEY, {
apiVersion: '2024-06-20'
})
5 replies
Nuxt fonts only load one font
Nuxt fonts only load one font when i try to load two font only one working
fonts: {
defaults: {
preload: true
},
families: [
{
name: 'MAutotune',
src: '/fonts/Saans-Medium.woff2',
weight: 'medium'
},
{
name: 'NTM Regular',
src: '/fonts/Saans-Regular.woff2',
weight: 'regular'
}
],
},
5 replies
does anyone have any idea why the form won't send?
https://pastebin.com/sz5Rse1B
Using Nuxt/ui and ValidBot
7 replies
Upload FILES to a directory like assets or whatever
I'm currently working on a project where I have to publish files locally. Everything works fine when I switch to deployment mode, but nothing works anymore: the file is moved, but I can't tell it's in any folder. What can I do?
1 replies