qb1t
Explore posts from serversNuxtUI v2 make primary color black
Hi I am using nuxt ui v2 in my project and I want my app to be light theme with black elements on it, but I am not able to change my primary color to just black (or any other color) I don't know what to do, it looks like if the ui library was just completely ignoring my app config.
My debug app config that doesn't work:
app.config.ts
Even with this the primary color is still green
6 replies
PPrisma
•Created by qb1t on 9/30/2024 in #help-and-questions
Correct way to setup prisma + docker
(I am new to prisma this is my first project using it) Hi I am currently trying to dockerise one of my typescript apps (discord bot) which is using prisma with sqlite database. I am in the middle of writing the dockerfile
This is it so far:
My question is what is the proper way to set up migrations or something so that when I push a new version of the
scheme.prisma
the database automatically gets updated without wiping current data. The sqlite database is persistent across the container builds.7 replies
Help with CORS
Hi so I need my website to load resources from an external api on client side
Things I tried:
using the built-in
$fetch()
method but I'm getting cors errors
using the @nuxtjs/axios
module but that doesn't even allow nuxt to start
using normal axios
and configuring it like this
I'm out of ideas what can I do?3 replies