Ir al contenido

From v1.1 to v1.2

Esta página aún no está disponible en tu idioma.

Version 1.2 of StudioCMS UI brings support for Astro v6 and a new option to disable the CSS resets it introduces. No changes are required to make the components work with v6.

StudioCMS UI v1.2 introduces a new option to disable the reset styles, which you can enable via noInjectResetCSS in the integration options:

astro.config.mjs
import { defineConfig } from "astro/config";
import ui from "@studiocms/ui";
export default defineConfig({
integrations: [
ui({
noInjectResetCSS: true,
}),
],
});