Is vite-plugin-nitro full nitro js? #1674
-
Is the In a nitro js project everything is available to us without the need to import it like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yes, it's fully compatible with Nitro. For API routes you can use plugins, utils, storage, etc. Additional Nitro configuration such as presets can be passed in the second argument as an object to the plugin. nitro({ ssr: true }, { preset: 'bun' }) |
Beta Was this translation helpful? Give feedback.
Yes, it's fully compatible with Nitro. For API routes you can use plugins, utils, storage, etc. Additional Nitro configuration such as presets can be passed in the second argument as an object to the plugin.