nitro
nitro copied to clipboard
Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.
### Environment node --version v16.14.2 ### Reproduction https://github.com/X7md/nitropack-test ```bash git clone https://github.com/X7md/nitropack-test cd nitropack-test npm install # there is npm pkg @imagemagick/magick-wasm ``` ### Describe the bug Try to build...
### Environment Nitropack 0.3.8 Node v16.14.2 ### Reproduction ``` npx nuxi init nuxt3-app cd nuxt3-app && pnpm i --shamefully-hoist pnpm build && node .output/server/index.mjs ``` Sometimes this will trigger an...
### Environment ``` System: OS: Windows 10 10.0.19044 CPU: (16) x64 AMD Ryzen 7 4800H with Radeon Graphics Memory: 5.15 GB / 15.42 GB Binaries: Node: 16.14.0 - C:\Program Files\nodejs\node.EXE...
Would be nice if something is intended to be dynamic. Perhaps we could support `prerender.exclude` with RegExp, function or string signature? Or a render hook with option to skip rendering...
### Environment OS: Macos Platform: Docker Compose Version: 0.4.8 Nuxt Version: v3 External Modules: @nuxtjs/tailwindcss ### Reproduction ``` import {defineNuxtConfig} from 'nuxt' // https://v3.nuxtjs.org/api/configuration/nuxt.config export default defineNuxtConfig({ modules: ['@nuxtjs/tailwindcss'], css:...
We can auto-configure binidngs for example from wranger config. Alternatively, we can auto generate wrangler config from nitro options and adjust drivers (switch `cloudflare-http` to `cloudflare-kv`)
For example, if content-type is image or gzipped file, we might want to support writing binary rather than text data.
Reference docs: https://developers.cloudflare.com/workers/platform/environment-variables/ Related: https://github.com/nuxt/framework/issues/5056 Normally, we allow extending runtime config using Node.js environment variables (`process.env.FOO`) while cloudflare exposes env as global constant variables (accessible as `FOO` or `globalThis.FOO`). We...