Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

feat: add Gatsby logo to returned framework info #797

Merged
merged 13 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ cypress/screenshots
cypress/support
.DS_Store

# Local Netlify folder
.netlify
13 changes: 13 additions & 0 deletions assets/logos/gatsby/dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions assets/logos/gatsby/default.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions assets/logos/gatsby/light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@
<meta charset="utf-8" />
<title>Framework Info</title>
</head>
<body>
<a href="react">React Site</a>
</body>
<body></body>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[sand] Is the index.html file required since only assets are being served now?

</html>
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build]
command = "npm run build"
publish = "dist"
publish = "assets"

[build.environment]
NODE_VERSION = "12"
Loading