Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: srcDir for layers #676

Merged
merged 9 commits into from
May 15, 2023
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default defineNuxtModule<ModuleOptions>({
const layers = nuxt.options._layers.slice().reverse()
for (const layer of layers) {
await addConfigPath(layer?.config?.tailwindcss?.configPath || join(layer.cwd, 'tailwind.config'))
contentPaths.push(...layerPaths(layer.cwd))
contentPaths.push(...layerPaths(layer?.config?.srcDir || layer.cwd))
}
} else {
await addConfigPath(moduleOptions.configPath)
Expand Down