tobi
Is it possible to use a custom icon in NuxtUI "<UIcon />"?
I think it's not possible as stated in the docs:
You can use any name from the https://icones.js.org collection such as the i- prefix:
Why not just creating a simple wrapper component for using your icon?4 replies
Nuxt 3 Charts
Mostly using chartjs for free stuff and paid highcharts for company stuff (both of them work great).
Tried apex charts years ago, ditched it due to performance issues (I have no clue how it behaves nowadays).
Just make sure to wrap your chart components with a
<ClientOnly>
to get around server/client rendering issues and you should be good to go.8 replies
Links in Nuxt UI table
yes, you can use the column-data slots available (see https://ui.nuxt.com/components/table#column-data)
e.g. something like this:
2 replies
Nuxt separate API and app for production
yeah, that's true - would reconsider using nx for this task instead of workspaces if the app gets bigger as I am using it already in multiple angular enterprise apps successfully.
15 minute build time? how? 😄
I never reached that stadium; the biggest angular app I am working in (development started 8 years ago, thousands of components, endless domains, subroutes, etc), takes a rough 120 seconds build time (yeah with webpack that was on an all time high of 7 minutes, but in times of esbuild or vite I have never seen such a high build time)
14 replies
Nuxt separate API and app for production
I am getting your point, but for the sake of this to create workspaces and two separate packages is a bit of an overkill imho. I think I will go with a simple custom build step script.
But thanks for the insights, will keep that in mind!
14 replies
Nuxt separate API and app for production
I came across this solution as well, thanks!
My concern with this solution is, that I need to generate the api, publish it, generate the client and publish the tauri release, as each command uses the same output directory and overwrites the previous build files... this would totally fit my needs if I can specify 2 different output directories, one for each specific build
14 replies
DTDrizzle Team
•Created by deezdawg on 6/3/2024 in #help
Updated to the latest and I get this error
see here: https://orm.drizzle.team/kit-docs/upgrade-21 😉
and the error message is literally saying it all, you need to add
dialect: "sqlite", // "postgresql" | "mysql"
to your drizzle config2 replies