Questions tagged [gridsome-plugin]

6 questions
2
votes
2 answers

Is it possible to use nested folders in gridsome when using the source-filesystem plugin?

My desired content folder structure is as follows: - content (directory) -- home.md -- trip_A (directory) --- intro.md --- day_1.md --- day_2.md -- trip_B (directory) --- intro.md --- day_1.md I would ideally like to define this as a single…
songololo
  • 4,724
  • 5
  • 35
  • 49
2
votes
1 answer

Gridsome how to render link icon in markdown with source-filesystem?

With Gridsome's source-filesystem plugin in gridsome.config.js: plugins: [ { use: '@gridsome/source-filesystem', options: { path: 'docs/**/*.md', typeName: 'Doc', remark: { plugins:…
1
vote
0 answers

Why is gridsome-plugin-typescript causing an UnhandledPromiseRejection warning?

I'm having trouble getting typescript working in my gridsome app. I ran gridsome develop before installing typescript to be sure I got everything installed properly so far and the landing page loads at localhost:8080 as expected. However when I…
Optiq
  • 2,835
  • 4
  • 33
  • 68
1
vote
1 answer

How to use a custom Transformer for Gridsome?

I have a proprietary file format that I'd like to use in my Gridsome website, with each of these files generating a new page. As I understand it, that's exactly what you can use a Transformer for. However, no plugin exists for a Transformer of the…
user1902853
  • 399
  • 1
  • 12
0
votes
1 answer

Gridsome: How to add Vue.use(MyPlugin) for a single page only?

I have added ReCaptcha plugin using Vue.use(ReCaptcha, {some options}) in Gridsome main.js which is displaying on all pages. How to add plugin for a particular page only in gridsome?
Milind Singh
  • 296
  • 6
  • 23
0
votes
1 answer

Gridsome source-filesystem add tag description

I'm using @gridsome/source-filesystem with this config: { use: '@gridsome/source-filesystem', options: { typeName: 'Post', path: 'content/posts/**/*.md', refs: { tags: { typeName: 'Tag', create: true }, …