mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix(spinner): add banner in tsup.config.ts * chore(changeset): add changeset * chore(docs): update breaking changes in blog * chore(docs): handled in PR4905
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import {defineConfig} from "tsup";
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
target: "es2019",
|
|
format: ["cjs", "esm"],
|
|
banner: {js: '"use client";'},
|
|
});
|