աӄա 2186f6da23
fix(spinner): Attempted to call useProviderContext() from the server (#4904)
* fix(spinner): add banner in tsup.config.ts

* chore(changeset): add changeset

* chore(docs): update breaking changes in blog

* chore(docs): handled in PR4905
2025-02-26 09:26:20 -03:00

9 lines
164 B
TypeScript

import {defineConfig} from "tsup";
export default defineConfig({
clean: true,
target: "es2019",
format: ["cjs", "esm"],
banner: {js: '"use client";'},
});