Code Monkey home page Code Monkey logo

Comments (3)

delucis avatar delucis commented on May 26, 2024

My go-to for this is usually to store these as JSON as those are very easily imported into your Astro project.

Here’s a minimal example that stores title and showAuthorNames values in src/settings/general.json:

import { defineConfig } from 'astro/config';
import NetlifyCMS from 'astro-netlify-cms';

export default defineConfig({
  integrations: [
    NetlifyCMS({
      config: {
        backend: {
          name: 'git-gateway',
          branch: 'main',
        },
        collections: [
          {
            name: 'settings',
            label: 'Site Settings',
            files: [
              {
                name: 'general',
                label: 'General',
                file: 'src/settings/general.json',
                fields: [
                  {
                    name: 'title',
                    widget: 'string',
                    label: 'Site Title',
                  },
                  {
                    name: 'showAuthorNames',
                    widget: 'boolean',
                    label: 'Show author names on landing page',
                  },
                ],
              },
            ],
          },
        ],
      },
    }),
  ],
});

Then in your Astro pages you can import this file and use its data:

---
// src/pages/index.astro

import { title, showAuthorNames } from '../settings/general.json';
---

<h1>{title}</h1>

{showAuthorNames && 'Toni Morrison'}

from astro-netlify-cms.

samhenrigold avatar samhenrigold commented on May 26, 2024

Ah I didn't know Netlify can write to JSON, amazing! I'll give it a shot

from astro-netlify-cms.

delucis avatar delucis commented on May 26, 2024

Yeah, they actually support saving to a bunch of formats! https://www.netlifycms.org/docs/configuration-options/#extension-and-format

I'll close this for now as I don't think there's anything more that needs doing in this repo but feel free to ask any other questions if you run into issues.

from astro-netlify-cms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.