feat: Create new user profile view, refine components, add dropdown to notes

This commit is contained in:
Jesse Wierzbinski 2024-04-24 20:56:01 -10:00
parent a0d0737683
commit a17df9fff8
No known key found for this signature in database
21 changed files with 470 additions and 133 deletions

View file

@ -8,6 +8,7 @@ export default defineNuxtConfig({
"@nuxt/fonts",
"nuxt-icon",
"@vee-validate/nuxt",
"nuxt-shiki",
],
app: {
head: {
@ -21,6 +22,24 @@ export default defineNuxtConfig({
htmlAttrs: { lang: "en-us" },
},
},
shiki: {
defaultTheme: "rose-pine",
bundledLangs: [
"javascript",
"typescript",
"html",
"css",
"json",
"python",
"toml",
"rust",
"sql",
"scss",
"bash",
"shell",
"yaml",
],
},
nitro: {
preset: "bun",
minify: true,