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

Commit 98828a7

Browse files
committed
Fix post 🚀
1 parent d293180 commit 98828a7

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

graphql-types.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,8 @@ export type DirectoryCtimeArgs = {
258258
export type Site = Node & {
259259
buildTime?: Maybe<Scalars['Date']>;
260260
siteMetadata?: Maybe<SiteSiteMetadata>;
261+
port?: Maybe<Scalars['Int']>;
262+
host?: Maybe<Scalars['String']>;
261263
polyfill?: Maybe<Scalars['Boolean']>;
262264
pathPrefix?: Maybe<Scalars['String']>;
263265
id: Scalars['ID'];
@@ -1009,6 +1011,8 @@ export type QueryAllDirectoryArgs = {
10091011
export type QuerySiteArgs = {
10101012
buildTime?: Maybe<DateQueryOperatorInput>;
10111013
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
1014+
port?: Maybe<IntQueryOperatorInput>;
1015+
host?: Maybe<StringQueryOperatorInput>;
10121016
polyfill?: Maybe<BooleanQueryOperatorInput>;
10131017
pathPrefix?: Maybe<StringQueryOperatorInput>;
10141018
id?: Maybe<StringQueryOperatorInput>;
@@ -2183,6 +2187,8 @@ export type SiteFieldsEnum =
21832187
| 'siteMetadata___contacts___links___medium'
21842188
| 'siteMetadata___contacts___links___devto'
21852189
| 'siteMetadata___contacts___links___instagram'
2190+
| 'port'
2191+
| 'host'
21862192
| 'polyfill'
21872193
| 'pathPrefix'
21882194
| 'id'
@@ -2284,6 +2290,8 @@ export type SiteGroupConnection = {
22842290
export type SiteFilterInput = {
22852291
buildTime?: Maybe<DateQueryOperatorInput>;
22862292
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
2293+
port?: Maybe<IntQueryOperatorInput>;
2294+
host?: Maybe<StringQueryOperatorInput>;
22872295
polyfill?: Maybe<BooleanQueryOperatorInput>;
22882296
pathPrefix?: Maybe<StringQueryOperatorInput>;
22892297
id?: Maybe<StringQueryOperatorInput>;

src/posts/2017-05-13-first-threejs-scene.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ authors: [fabrizio_duroni]
1414

1515
---
1616

17+
**NB.: The scene described in this post is no longer available in production (due to a revamp of the entire website).
18+
You can find it in the [old repository of this website](https://github.com/chicio/old.chicio.github.io) or you can
19+
check the [codesandbox](https://codesandbox.io/s/threejs-tutorial-vanillajs-tj1ty?file=/index.html) created by
20+
[Arthur Denner](https://github.com/arthurdenner).**
21+
1722
I love three.js. I think it's one of the most beautiful javascript and computer graphics library out there. Don't you
1823
know what three.js is? Let's see the description from
1924
the [official github repo](https://github.com/mrdoob/three.js/ "official threejs github repo"):

0 commit comments

Comments
 (0)