framework
framework copied to clipboard
Old repo of Nuxt 3 framework, now on nuxt/nuxt
### Environment ------------------------------ - Operating System: `Darwin` - Node Version: `v18.12.1` - Nuxt Version: `3.0.0-rc.13` - Nitro Version: `0.6.1` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `nitro`,...
### Environment ------------------------------ - Operating System: `Darwin` - Node Version: `v16.16.0` - Nuxt Version: `3.0.0-rc.12` - Nitro Version: `0.6.0` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `modules`,...
### Environment - Operating System: `Linux` - Node Version: `v14.19.3` - Nuxt Version: `3.0.0-rc.9` - Nitro Version: `0.5.1` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `telemetry` -...
### Environment - Operating System: `Windows_NT` - Node Version: `v16.18.0` - Nuxt Version: `3.0.0-rc.13` - Nitro Version: `0.6.1` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `modules`, `experimental`,...
Hi. I have this component provider, just for dynamic component imports. ```vue import { defineProps, defineAsyncComponent } from 'vue'; interface Props { component: { module: string; file: string; }; }...
### Environment middleware ### Reproduction middleware ### Describe the bug When I reload the page, it throws me to the authorization page, although the user is authorized ``` import {...
### Environment - Operating System: `Darwin` - Node Version: `v18.7.0` - Nuxt Version: `3.0.0-rc.12` - Nitro Version: `0.6.0` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `-` -...
### Environment Browser: Firefox 106.0.5 / Brave Browser v1.45.123 (Chromium 107.0.5304.110) ### Reproduction Open [this](https://github.com/nuxt/framework/blob/main/docs/public/img/getting-started/views/app.svg) or [this](https://v3.nuxtjs.org/getting-started/views) link on both Firefox and any Chromium-based Web browser. ### Describe the bug...
### Describe the feature Since route rules are a thing now, it'd be amazing to set them up to automatically cache static assets served in `_nuxt` (or the renamed asset...
### Describe the feature I was thinking about an option to define SSR function inside SFC. ```vue import someLogModule from 'somelogmodule' onMounted(() => console.log('logging: connection established')) export default { fetchSomeData(value:...