Nuxt Content provides several ways to import content files into your collection. You can configure the source by using the source property within defineCollection:
import { defineCollection, defineContentConfig } from '@nuxt/content'
export default defineContentConfig({
collections: {
docs: defineCollection({
source: '**',
type: 'page'
})
}
})
sourceThe source property can be defined as either a string (following a glob pattern) or an object, allowing more detailed source configuration for your target directory and files within the content folder.
Example:
source: '**' includes all files within the content directory and its subdirectories.source: '**/*.md'includes all Markdown files within the content directory and its subdirectories.source: 'docs/**/*.yml' includes all YML files within the content/docs and its subdirectories.source: '**/*.{json,yml}' includes JSON or YML file within the content directory and all its subdirectories.source: '*.json' includes only JSON files located directly within the content directory, excluding any subdirectories.include (required)Glob pattern of your target repository and files in the content folder.
excludeGlob patterns to exclude content from the import.
prefixThis configuration only applied for page type with 1-to-1 relationship between content files and pages on your site.
It represents the path prefix (base URL) of the corresponding page on the website.
prefix must start by a leading /.By default, module extracts the static prefix of source(or source.include) and uses it as a prefix for content paths. For example, if you define /en/** source, module will auto-fill the prefix with /en. You can manually provide a prefix to override this behavior. The prefix can be removed by setting prefix: '/' in the collection source.
defineCollection({
type: "page",
source: {
include: "en/**",
exclude: ["en/index.md"],
prefix: '/'
}
})
cwdRoot directory for content matching.
Example:
If you want to include files from a folder outside the content directory, set the absolute path of that folder to the cwd property.
source: {
cwd: path.resolve('packages/my-pkg/docs'),
include: '**/*.md',
}
repositoryExternal source representing a remote git repository URL (e.g., https://github.com/nuxt/content).
When defining an external source you must also define the include option.
include pattern is essential for the module to know which files to use for the collection.
import { defineCollection, defineContentConfig } from '@nuxt/content'
export default defineContentConfig({
collections: {
docs: defineCollection({
type: 'page',
source: {
repository: 'https://github.com/nuxt/content',
include: 'docs/content/**',
},
})
}
})
authTokenAuthentication token for private repositories (e.g., GitHub personal access token).
authBasicBasic authentication for private repositories (e.g., Bitbucket username and password).
defineCollection({
type: 'page',
source: {
repository: 'https://bitbucket.org/username/repo',
authBasic: {
username: 'username',
password: 'password',
},
},
})