cannot resolve css path for local layer

im running nuxt with all v4 features enabled. i have a layers folder at the root of my project with a base layer. in here i wish to keep all my styles, assets, components, etc. in the nuxt config, im trying to reference the css file via
css: ["~/assets/css/styles.css"],
css: ["~/assets/css/styles.css"],
i think ive tried every combination of path alias and nothing works, i get the following
Pre-transform error: Failed to resolve import "app/assets/css/styles.css" from "virtual:nuxt:F%3A%2Fprojects%2Fcompany%2Fcompany-app%2F.nuxt%2Fcss.mjs".
Pre-transform error: Failed to resolve import "app/assets/css/styles.css" from "virtual:nuxt:F%3A%2Fprojects%2Fcompany%2Fcompany-app%2F.nuxt%2Fcss.mjs".
when dealing with local layers, how am i suppose to confidently reference file paths of that layer?
3 Replies
kapa.ai
kapa.ai3w ago
Hi @BinaryArtifex. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- When working with local layers in Nuxt, referencing assets like CSS files can be tricky because of how path resolution works. Let me explain the issue and provide solutions. The Problem When you use aliases like ~ or @ in a layer, they are resolved relative to the user's project paths, not the layer itself. This is why your CSS import isn't working as expected. Solutions 1. Use full resolved paths in your layer's nuxt.config.ts The recommended approach for layers is to use full resolved paths:
import { fileURLToPath } from 'url'
import { dirname, join } from 'path'

const currentDir = dirname(fileURLToPath(import.meta.url))

export default defineNuxtConfig({
css: [
join(currentDir, './assets/css/styles.css')
]
})
import { fileURLToPath } from 'url'
import { dirname, join } from 'path'

const currentDir = dirname(fileURLToPath(import.meta.url))

export default defineNuxtConfig({
css: [
join(currentDir, './assets/css/styles.css')
]
})
This approach is documented in the Nuxt Layers guide and ensures that paths are resolved correctly relative to your layer. 2. Use named layer aliases (Nuxt 3.15+) If you're using Nuxt 3.15+, you can take advantage of named layer aliases. For auto-scanned layers (from your ~~/layers directory), Nuxt automatically creates aliases. For example, you can access your layer via #layers/base (assuming your layer is named "base"). To create named layer aliases, specify a name in the configuration of your layer:
// In your layer's nuxt.config.ts
export default defineNuxtConfig({
$meta: {
name: 'base',
},
})
// In your layer's nuxt.config.ts
export default defineNuxtConfig({
$meta: {
name: 'base',
},
})
Then you can reference your CSS file using:
css: ['#layers/base/assets/css/styles.css']
css: ['#layers/base/assets/css/styles.css']
This feature was added in PR #30948. 3. Check experimental localLayerAliases setting Nuxt has an experimental feature called localLayerAliases which is enabled by default. This feature resolves ~, ~~, @ and @@ aliases located within layers with respect to their layer source and root directories. Make sure this feature is not disabled in your configuration:
export default defineNuxtConfig({
experimental: {
localLayerAliases: true // This is the default
}
})
export default defineNuxtConfig({
experimental: {
localLayerAliases: true // This is the default
}
})
Important Notes 1. Remember that layers should be in the root of your project (~~/layers), not in the src directory. 2. When using CSS from layers, be aware of the CSS order. Recent fixes in Nuxt ensure that child projects can override CSS of parent layers. 3. If you're still having issues, you might need to check if your layer structure follows the expected Nuxt conventions. By using one of these approaches, you should be able to confidently reference file paths in your local layer. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai3w ago
<@382140070183960576> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
BinaryArtifex
BinaryArtifexOP3w ago
ai is no help. ive had to bring a gun to a knife fight...
import tailwindcss from "@tailwindcss/vite";
import { dirname, resolve } from "path";
import { fileURLToPath } from "url";
import svgLoader from "vite-svg-loader";

const __dirname = dirname(fileURLToPath(import.meta.url));

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
css: [resolve(__dirname, "app/assets/css/styles.css")],
compatibilityDate: "2024-08-03",
components: [
{
ignore: ["**/*.{spec,stories,types,utils}.ts", "**/*.{stories}.vue"],
path: resolve(__dirname, "app/components"),
},
],
future: {
compatibilityVersion: 4,
},
imports: {
dirs: [
resolve(__dirname, "app/composables/*/index.{ts,js,mjs,mts}"),
resolve(__dirname, "app/utils/*/index.{ts,js,mjs,mts}"),
],
},
vite: {
plugins: [svgLoader(), tailwindcss()],
},
});
import tailwindcss from "@tailwindcss/vite";
import { dirname, resolve } from "path";
import { fileURLToPath } from "url";
import svgLoader from "vite-svg-loader";

const __dirname = dirname(fileURLToPath(import.meta.url));

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
css: [resolve(__dirname, "app/assets/css/styles.css")],
compatibilityDate: "2024-08-03",
components: [
{
ignore: ["**/*.{spec,stories,types,utils}.ts", "**/*.{stories}.vue"],
path: resolve(__dirname, "app/components"),
},
],
future: {
compatibilityVersion: 4,
},
imports: {
dirs: [
resolve(__dirname, "app/composables/*/index.{ts,js,mjs,mts}"),
resolve(__dirname, "app/utils/*/index.{ts,js,mjs,mts}"),
],
},
vite: {
plugins: [svgLoader(), tailwindcss()],
},
});

Did you find this page helpful?