Immediately halt request processing and return custom responses effortlessly.

Immediately halt request processing and return custom responses effortlessly.
``sh`
npm i @inox-tools/cut-short
Add the integration to your astro.config.mjs:
`js
// astro.config.mjs
import { defineConfig } from 'astro';
import cutShort from '@inox-tools/cut-short';
export default defineConfig({
integrations: [cutShort({})],
});
``