Nils
Nils
## Describe the Feature You Want I would love to see a command like: ```sh > tilt list backend frontend storybook database db-ui frontend-test # or > tilt list-resources backend...
### Environment ``` Nuxt CLI v3.0.0-rc.4-27585508.c9d4b2e 12:42:59 RootDir: /app Nuxt project info: ------------------------------ - Operating System: `Darwin` - Node Version: `v16.14.2` - Nuxt Version: `3.0.0-rc.4-27585508.c9d4b2e` - Package Manager: `[email protected]` -...
Add nuxt-session to the modules overview.
### Clear and concise description of the problem When using `tree.file: 'path'` in the config: ```ts import { defineConfig } from 'histoire' import { HstVue } from '@histoire/plugin-vue' import {...
### Environment - Operating System: `Darwin` - Node Version: `v16.14.2` - Nuxt Version: `3.0.0-rc.13` - Nitro Version: `0.6.1` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `-` -...
### Describe the feature Nuxt modules can expand nuxt applications in different ways. One such way is to add additional server middlewares using `@nuxt/kit`: ```ts addServerHandler({ middleware: true, handler })...
When checking out the modules page today, I saw that the download count for `nuxt-session` is off. It is correct on the modules details page On the repo: https://github.com/sidebase/nuxt-session ...
### Describe the feature Currently, we attempt to ensure that the server session middleware is always first by using `.unshit` to register it: https://github.com/sidebase/nuxt-session/blob/f82d2c110f081d82de396e925e6b18f694ada8dd/src/module.ts#L80-L86 This attempt however does not work,...
### Describe the feature client-side is misleading, as in practice for universally rendered apps the "client" code is executed both on the server and on the client. We recently introduced...
Improve the story of storing `id` and `createdAt` within the session object. E.g., we could add read-only copies in, so that overwriting it leads to no changes in session at...