astro-netlify-cms

Integration to add Netlify CMS’s admin dashboard to any Astro project

Downloads
332
Stars
161
Committers
6

Bot releases are visible (Hide)

astro-netlify-cms - v0.5.4 Latest Release

Published by github-actions[bot] about 1 year ago

Patch Changes

astro-netlify-cms - v0.5.3

Published by github-actions[bot] over 1 year ago

Patch Changes

astro-netlify-cms - v0.5.2

Published by github-actions[bot] over 1 year ago

Patch Changes

astro-netlify-cms - v0.5.1

Published by github-actions[bot] almost 2 years ago

Patch Changes

astro-netlify-cms - v0.5.0

Published by github-actions[bot] almost 2 years ago

Minor Changes

  • #53 40d0385 Thanks @delucis! - Don’t automatically inject @astrojs/react integration

    ⚠️ BREAKING CHANGE ⚠️

    Previously, this integration included @astrojs/react and injected it to Astro’s integrations config for you. This is no longer the case.

    If you are using React components and were relying on this, make sure to add the integration when upgrading. The simplest way to do this is to run:

    npx astro add react
    
astro-netlify-cms - v0.4.0

Published by github-actions[bot] almost 2 years ago

Minor Changes

  • #48 a1a0002 Thanks @delucis! - Add support for importing npm packages via previewStyles config

    ⚠️ BREAKING CHANGE ⚠️

    This release changes how you import a local CSS file in previewStyles.
    These must now be prefixed with a leading /:

    {
      previewStyles: [
    -   'src/styles/base.css',
    +   '/src/styles/base.css',
      ],
    }
    

    This allows us to support importing CSS you may have installed from an npm module, for example importing font CSS from Fontsource:

    previewStyles: ["@fontsource/roboto"];
    
astro-netlify-cms - v0.3.5

Published by github-actions[bot] almost 2 years ago

Patch Changes

  • #46 cdbf7d6 Thanks @delucis! - Include identity widget on admin route even when disableIdentityWidgetInjection is set to true
astro-netlify-cms - v0.3.4

Published by github-actions[bot] almost 2 years ago

Patch Changes

astro-netlify-cms - v0.3.3

Published by github-actions[bot] almost 2 years ago

Patch Changes

  • #38 9b2802c Thanks @delucis! - Restart Netlify CMS proxy server when astro.config reloads
astro-netlify-cms - v0.3.2

Published by github-actions[bot] almost 2 years ago

Patch Changes

astro-netlify-cms - v0.3.2-next.0

Published by github-actions[bot] almost 2 years ago

Patch Changes

astro-netlify-cms - v0.3.1

Published by github-actions[bot] almost 2 years ago

Patch Changes

astro-netlify-cms - v0.3.0

Published by github-actions[bot] almost 2 years ago

Minor Changes

  • #30 6757440 Thanks @delucis! - Refactor to use Astro’s built-in injectRoute helper to add the admin dashboard.

    Significantly simplifies the Vite plugin logic and should make future improvements easier to implement.

astro-netlify-cms - v0.2.5

Published by github-actions[bot] almost 2 years ago

Patch Changes

astro-netlify-cms - v0.2.4

Published by github-actions[bot] about 2 years ago

Patch Changes

astro-netlify-cms - v0.2.3

Published by github-actions[bot] about 2 years ago

Patch Changes

astro-netlify-cms - v0.2.2

Published by github-actions[bot] about 2 years ago

Patch Changes

  • a7c4e43 Thanks @delucis! - Hot fix: remove comment clashing with over-eager whitespace collapsing by astro-compress
astro-netlify-cms - v0.2.1

Published by github-actions[bot] about 2 years ago

Patch Changes

  • cb7adcc Thanks @delucis! - Fix for compression support: end import statements with semi-colons