Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

1.1.0

Compare
Choose a tag to compare
@medfreeman medfreeman released this 22 Oct 21:55
· 189 commits to master since this release

1.1.0 (2017-10-22)

Features

  • config add possibility to declare nuxtent options api key as a function
    given the isStatic parameter to adjust Axios options when using nuxt generate, fixes #92
{
  content: {
    page: '/_slug',
    permalink: '/:year/:slug',
    generate: ['get', 'getAll']
  },
  api: function(isStatic) {
    return {
      browserBaseURL: isStatic ? 'http://production-url.com' : ''
    }
  }
}
  • config all nuxtent options present in api key are now forwarded to axios

  • module allow .yml file extension for content files (a6b240a), closes #69

Bug Fixes

  • prism change Prism implementation to include classes (
    4dad625
    )

  • module harmonize date format of posts and pages (2154c45), fixes#98

  • module do not expose filePath to the browser (7311294), fixes #96

  • module: fix generate router permalink concatenation (f553cda), closes #103