Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azurewarth0920/nuxt-dynamic-content
A Nuxt.js plugin that using content to generate static pages with dynamic routing.
https://github.com/azurewarth0920/nuxt-dynamic-content
jamstack nuxt nuxt-content nuxt-module nuxtjs static-site-generator
Last synced: about 1 month ago
JSON representation
A Nuxt.js plugin that using content to generate static pages with dynamic routing.
- Host: GitHub
- URL: https://github.com/azurewarth0920/nuxt-dynamic-content
- Owner: Azurewarth0920
- License: mit
- Created: 2020-07-27T14:47:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T12:57:21.000Z (about 2 years ago)
- Last Synced: 2024-10-30T00:44:08.159Z (3 months ago)
- Topics: jamstack, nuxt, nuxt-content, nuxt-module, nuxtjs, static-site-generator
- Language: JavaScript
- Homepage: https://azurewarth0920.github.io/nuxt-dynamic-content/
- Size: 1.82 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nuxt-dynamic-content
A Nuxt.js JAM stack plugin that generating static site with dynamic resource.## Installation
Use yarn
```bash
yarn add nuxt-dynamic-content
```or npm
```bash
npm install nuxt-dynamic-content
```Then, add `nuxt-dynamic-content` to the `modules` section of `nuxt.config.js`:
```JavaScript
import dynamicContent from 'nuxt-dynamic-content'{
modules: [
dynamicContent
]
}
```and don't forget to put config file `content.config.js` in `module` folder, or you can import your config into module section.
```JavaScript
import dynamicContent from 'nuxt-dynamic-content'
import dynamicContentConfig from '~/some-folder/'{
modules: [
[dynamicContent, dynamicContentConfig]
]
}
```## Documentation
To [Documentation](https://azurewarth0920.github.io/nuxt-dynamic-content/).