megazear7 / orison

A server and static site generator built on top of lit-html
http://orison.alexlockhart.me
18 stars 2 forks source link

Public Metadata #2

Closed megazear7 closed 5 years ago

megazear7 commented 5 years ago

Make the public property of data.json files publicly available

So for example a /src/pages/data.json file such as this:

{
  "public": {
    "message": "Hello, World",
    "example": 4
  },
  "somethingElse": {
  },
  "orison": {
  }
}

Thee below json would be available at localhost:3000/data.json

{
  "message": "Hello, World",
  "example": 4
}
megazear7 commented 5 years ago

This was implemented in commit 0cf2d9ebc240.