File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
- // This is where project configuration and installed plugin options are located.
1
+ // This is where project configuration and plugin options are located.
2
2
// Learn more: https://gridsome.org/docs/config
3
3
4
- // Changes here requires a server restart to work properly .
4
+ // Changes here requires a server restart.
5
5
// To restart press CTRL + C in terminal and run `gridsome develop`
6
6
7
7
module . exports = {
Original file line number Diff line number Diff line change
1
+ // Server API makes it possible to hook into various parts of Gridsome
2
+ // on server-side and add custom data to the GraphQL data layer.
3
+ // Learn more: https://gridsome.org/docs/server-api
4
+
5
+ // Changes here requires a server restart.
6
+ // To restart press CTRL + C in terminal and run `gridsome develop`
7
+
8
+ module . exports = function ( api ) {
9
+ api . loadSource ( store => {
10
+ // Use the Data store API here: https://gridsome.org/docs/data-store-api
11
+ } )
12
+ }
You can’t perform that action at this time.
0 commit comments