/** @returns the directory path to the `@poupe/vue` package */export const contentPath = () => dirname(new URL(import.meta.url).pathname);/** @returns the glob patterns needed by tailwindcss to scan classes */export const contentGlobs = (): string[] => { const path = contentPath(); return [ `${path}/index.mjs`, `${path}/**/*.vue`, ];};
@nuxt/kit
.nuxt
--- a/web/client/nuxt.config.ts+++ b/web/client/nuxt.config.ts@@ -43,6 +43,9 @@ export default defineNuxtConfig({ assets: { prefix: '/_fonts', },+ experimental: {+ disableLocalFallbacks: true,+ }, }, routeRules: {