-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fronend for FTSO+, framework switch (#1)
- Loading branch information
Showing
50 changed files
with
13,832 additions
and
35,018 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
# Project dependencies | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
.cache/ | ||
# Build directory | ||
public/ | ||
*.log | ||
.cache | ||
.DS_Store | ||
yarn-error.log | ||
.idea/ | ||
*.iml | ||
src/.temp | ||
node_modules | ||
dist | ||
.env | ||
.env.* | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# FTSO Plus | ||
> https://ftso.plus | ||
|
||
[FTSO+](https://ftso.plus) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// This is where project configuration and plugin options are located. | ||
// Learn more: https://gridsome.org/docs/config | ||
|
||
// Changes here require a server restart. | ||
// To restart press CTRL + C in terminal and run `gridsome develop` | ||
|
||
module.exports = { | ||
siteName: 'Gridsome', | ||
plugins: [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Server API makes it possible to hook into various parts of Gridsome | ||
// on server-side and add custom data to the GraphQL data layer. | ||
// Learn more: https://gridsome.org/docs/server-api/ | ||
|
||
// Changes here require a server restart. | ||
// To restart press CTRL + C in terminal and run `gridsome develop` | ||
|
||
module.exports = function (api) { | ||
api.loadSource(({ addCollection }) => { | ||
// Use the Data Store API here: https://gridsome.org/docs/data-store-api/ | ||
}) | ||
|
||
api.createPages(({ createPage }) => { | ||
// Use the Pages API here: https://gridsome.org/docs/pages-api/ | ||
}) | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.