Dante
Dante
NNuxt
Created by Dante on 4/24/2025 in #❓・help
Where do other folders go if I have changed the root directory
Here is my nuxt config
export default defineNuxtConfig({
compatibilityDate: "2024-11-01",
devtools: { enabled: false },
srcDir: "src",
future: {
compatibilityVersion: 4,
},
components: [
{
path: "~/components",
pathPrefix: false,
},
],
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/supabase", "@nuxt/icon"],
typescript: {
typeCheck: false, // Disable TypeScript type checking
},
});
export default defineNuxtConfig({
compatibilityDate: "2024-11-01",
devtools: { enabled: false },
srcDir: "src",
future: {
compatibilityVersion: 4,
},
components: [
{
path: "~/components",
pathPrefix: false,
},
],
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/supabase", "@nuxt/icon"],
typescript: {
typeCheck: false, // Disable TypeScript type checking
},
});
For folders like middleware, data and layers where am I now expected to put them? I tried in src but nuxt couldn't find my file in there. I would greatly appreaciate guidance
19 replies
NNuxt
Created by Dante on 12/9/2024 in #❓・help
[Solved] Implementing Layers In Existing Project
No description
5 replies
NNuxt
Created by Dante on 11/1/2024 in #❓・help
[Solved] Local Fonts Not Working
Good day everyone, I have been trying out Nuxt and while I was trying to use custom local fonts it isn't working. I have been going with the docs instructions but with no luck. I am stumped as to what I am missingz - font files in public/fonts - stylesheet in src/assets/css - stylesheet refrenced insrc/layouts/default.vue - I am using tailwind I also get this warning in the terminal
WARN [Vue Router warn]: No match found for location with path "/fonts/outfit-v11-latin-600.woff2"
WARN [Vue Router warn]: No match found for location with path "/fonts/outfit-v11-latin-600.woff2"
Here is my repo that I am working on https://github.com/Psypher1/nuxt-explore
20 replies