Skip to content

Releases: delucis/astro-netlify-cms

v0.5.4

30 Aug 10:55
66d4f0f
Compare
Choose a tag to compare

Patch Changes

v0.5.3

01 Feb 23:26
66d2695
Compare
Choose a tag to compare

Patch Changes

v0.5.2

21 Jan 01:51
e02f9a4
Compare
Choose a tag to compare

Patch Changes

v0.5.1

11 Jan 00:15
58ca589
Compare
Choose a tag to compare

Patch Changes

v0.5.0

18 Dec 17:35
37ad6de
Compare
Choose a tag to compare

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

v0.4.0

10 Dec 23:43
49ba8bc
Compare
Choose a tag to compare

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"];

v0.3.5

10 Dec 23:33
9a97e0e
Compare
Choose a tag to compare

Patch Changes

  • #46 cdbf7d6 Thanks @delucis! - Include identity widget on admin route even when disableIdentityWidgetInjection is set to true

v0.3.4

17 Nov 20:46
e13c745
Compare
Choose a tag to compare

Patch Changes

v0.3.3

31 Oct 11:40
f5a1b48
Compare
Choose a tag to compare

Patch Changes

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

v0.3.2

29 Oct 14:07
571ab8d
Compare
Choose a tag to compare

Patch Changes