mirror of
https://github.com/rrousselGit/freezed.git
synced 2025-05-17 08:25:55 +08:00
26 lines
441 B
TypeScript
26 lines
441 B
TypeScript
import { defineConfig, presets } from "sponsorkit";
|
|
|
|
export default defineConfig({
|
|
github: {
|
|
login: "rrousselGit",
|
|
},
|
|
width: 800,
|
|
formats: ["svg"],
|
|
tiers: [
|
|
{
|
|
title: "Backers",
|
|
preset: presets.base,
|
|
},
|
|
{
|
|
title: "Silver Sponsors",
|
|
monthlyDollars: 25,
|
|
preset: presets.large,
|
|
},
|
|
{
|
|
title: "Gold Sponsors",
|
|
monthlyDollars: 100,
|
|
preset: presets.xl,
|
|
},
|
|
],
|
|
});
|