Saltearse al contenido

From v0.1.0 to v0.3.0

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

Version 0.3.0 of @studiocms/ui introduced mostly accessibility improvements and is backwards compatible.

While there are no breaking changes, the method of importing the global.css stylesheet in the root layout has been deprecated in favor of using the provided integration.

We recommend doing the following to upgrade your project:

  1. Remove the global.css import from your root layout.

    Layout.astro
    ---
    import '@studiocms/ui/css/global.css';
    ---
  2. Add the following code to your astro.config.mjs file:

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

The integration will automatically add the stylesheet to your page.