Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 22 Jan 15:07
1232f63

Major Changes

  • 51ccc90: Creates separate adapter packages for each adapter. These changes reduces the size of the core package and ensures users only install what is needed.

    If you are using an adapter, install the corresponding package @domcojs/.... For example, to install the Vercel adapter and update the import statements in your vite.config file:

    npm i -D @domcojs/vercel
    - import { adapter } from "domco/adapter/vercel";
    + import { adapter } from "@domcojs/vercel";

Patch Changes