i18n multiple files for each language
Middlewares run before plugins are initialized?

Setting up a static multi page app
pages/index.html
) at /
on the dev server, but I don't know if I should use the pages
folder at all if I'm not using the router.Hosting Nuxt 3 Server API on Cloudflare: Pages, Workers, or Neither?
Type checking module with conditional imports
addImports
, depending on the Nuxt configuration.
Type checking fails unless a configuration is passed that results in all those conditional addImport
being executed. For example some plugins (that are also conditionally added using addPlugin
) use imports that may not be present, so vue-tsc
will fail.
What's the normal way of getting around this so type checking can pass regardless of config?...Excessive CSS in Nuxt3 with Tailwind: Unexpected Unused Styles
Specify externals in nuxt module
Nuxt prepack weird error
npm run release
in my project. It seems to be coming from npm run prepack
but if I run that directly it works fine! It's only as part of the multi command release
.
```
[12:46:04 PM] ERROR Cannot find module /github.com/nasontech/nuxt-fetch-transforms/dist/runtime/github imported from file:///github.com/nasontech/nuxt-fetch-transforms, file:///github.com/nasontech/, file:///github.com/nasontech/nuxt-fetch-transforms/_index.js, file:///github.com/nasontech/node_modules
...prerender only after data loads
nuxt generate
data just don't load before route rendering. How to wait for data to load and prerender routes only after this?Toast config Nuxt UI
navigateTo doesn't work on client side while middleware is still running
Hydration error with i18n
dayjs
and we have a watcher for the locale switching in App.vue:
```ts
const { locale } = useI18n()
watch(locale, (newLocale) => {...Security middleware does not work on prod but does work on dev

It is Possible to exclude folder in /server/local/** to not build in npx nuxi build ?
Extracting `useFetch` return type
const { data } = useFetch('/api/public/metadata')
// data is globalThis.Ref<{ someComplicated: type; withMany: properties }> | undefined
const { data } = useFetch('/api/public/metadata')
// data is globalThis.Ref<{ someComplicated: type; withMany: properties }> | undefined
Module dependencies as dev only
Getting Cookie From Middleware
How to forward logs to a Slack channel?