@megakuul/adapter-battleshiper
v0.5.8
Published
A SvelteKit adapter for deployment on battleshiper lambda infrastructure.
Downloads
33
Maintainers
Readme
adapter-battleshiper
A SvelteKit adapter for deployment on battleshiper lambda infrastructure.
Installation
Install the adapter and update your svelte.config.js
:
# Installing from npm
npm i --save-dev @megakuul/adapter-battleshiper
# Or even better: install from jsr (preferred, but requires a registry redirect in .npmrc or bunfig.toml when not working with deno))
npx jsr add --save-dev @megakuul/adapter-battleshiper
import adapter from "@megakuul/adapter-battleshiper";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
}
};
export default config;