Accessing a theme's package.json variables

Hi there,

Can anyone share a link explaining how to access the config variables of a theme’s package.json, unsing handlebars (or anything adequate to process those values in an .hbs file)?
It surely is possible since:
“config”: {
“posts_per_page”: 10
}
is used.
thanks!

This is documented here:

1 Like

oops… thank you!
(I’m sort of lost in the docs, but that’s no excuse)

mmm…

Inside of the config block, there is currently a single supported property - posts_per_page.

so if I define

  "config": {
    "posts_per_page": 10,
    "foobar": "123"
  }

I won’t be able to have {{@config.foobar}}, right?

Can it be hacked, or it’s hopeless at this point? (I’d love to use @config to configure a theme)

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.