Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz committed Aug 24, 2022
1 parent a78b9af commit f2bcd75
Show file tree
Hide file tree
Showing 13 changed files with 4,018 additions and 33,519 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,3 @@ node_modules/
*public/

package.lock.json

# Local Netlify folder
.netlify
Empty file added .npmignore
Empty file.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "engines" : { "node" : ">=0.14" } }
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
15.0.0
3 changes: 3 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
backend:
name: git-gateway
branch: master # Branch to update (optional; defaults to master)
Binary file added favicon.ico
Binary file not shown.
16 changes: 11 additions & 5 deletions gatsby-node.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
// const path = require('path');
//
// exports.onCreateWebpackConfig = ({
// actions
// }) => {
// actions.setWebpackConfig({
// resolve: {
// modules: [path.resolve(__dirname, 'src'), 'node_modules']
// }
// });
// };
30 changes: 20 additions & 10 deletions gatsby-ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,46 @@
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/ssr-apis/
*
* <script src={withPrefix('js/blm.js')}/>
<script src={withPrefix('js/goog-search.js')}/>
* <script src={withPrefix('js/algolia.js')}/>
<script src={withPrefix('js/analytics.js')}/>
* <script src={withPrefix('js/prettier.js')}/>
* <script src={withPrefix('js/searchbar.js')}/>
<script src={withPrefix('js/search-create.js')}/>
*/

const React = require("react");
const withPrefix = require("./src/utils/withPrefix").default;

exports.onRenderBody = function({ setHeadComponents, setPostBodyComponents }) {
exports.onRenderBody = function({
setHeadComponents,
setPostBodyComponents
}) {

setHeadComponents([

]);


setPostBodyComponents([
<React.Fragment>
<script src={withPrefix('js/algolia.js')}/>
<script src={withPrefix('js/analytics.js')}/>
<script src={withPrefix('js/blm.js')}/>
<script src={withPrefix('js/goog-search.js')}/>


<script src={withPrefix('js/main.js')}/>
<script src={withPrefix('js/netlify-identity.js')}/>

<script src={withPrefix('js/page-load.js')}/>
<script src={withPrefix('js/page-unload.js')}/>
<script src={withPrefix('js/plugins.js')}/>
<script src={withPrefix('js/prettier.js')}/>

<script src={withPrefix('js/prism.js')}/>
<script src={withPrefix('js/searchbar.js')}/>
<script src={withPrefix('js/search-create.js')}/>

<script src={withPrefix('js/syntax.js')}/>
<script src={withPrefix('js/ukraine.js')}/>

</React.Fragment>

]);

};
1 change: 0 additions & 1 deletion googled2b1865dedd985a4.html
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
google-site-verification: googled2b1865dedd985a4.html
google-site-verification: googled2b1865dedd985a4.html
Loading

2 comments on commit f2bcd75

@vercel
Copy link

@vercel vercel bot commented on f2bcd75 Aug 24, 2022

Choose a reason for hiding this comment

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

Deployment failed with the following error:

Resource is limited - try again in 2 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link

@vercel vercel bot commented on f2bcd75 Aug 24, 2022

Choose a reason for hiding this comment

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

Deployment failed with the following error:

Resource is limited - try again in 1 hour (more than 100, code: "api-deployments-free-per-day").

Please sign in to comment.