Skip to content

Commit 070cfbb

Browse files
Update to it.reactjs.org
1 parent 0920cd4 commit 070cfbb

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

gatsby-config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
module.exports = {
1010
siteMetadata: {
1111
title: 'React: A JavaScript library for building user interfaces',
12-
siteUrl: 'https://reactjs.org',
12+
siteUrl: 'https://it.reactjs.org',
1313
rssFeedTitle: 'React',
1414
rssFeedDescription: 'A JavaScript library for building user interfaces',
1515
},

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.0.1",
55
"private": true,
66
"bugs": {
7-
"url": "https://github.com/reactjs/reactjs.org"
7+
"url": "https://github.com/reactjs/it.reactjs.org"
88
},
99
"dependencies": {
1010
"babel-eslint": "^8.0.1",
@@ -61,15 +61,15 @@
6161
"node": ">8.4.0",
6262
"yarn": "^1.3.2"
6363
},
64-
"homepage": "https://reactjs.org/",
64+
"homepage": "https://it.reactjs.org/",
6565
"keywords": [
6666
"gatsby"
6767
],
6868
"license": "CC",
6969
"main": "n/a",
7070
"repository": {
7171
"type": "git",
72-
"url": "git+https://github.com/reactjs/reactjs.org.git"
72+
"url": "git+https://github.com/reactjs/it.reactjs.org.git"
7373
},
7474
"scripts": {
7575
"build": "gatsby build",

src/components/MarkdownPage/MarkdownPage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const MarkdownPage = ({
112112
<div css={{marginTop: 80}}>
113113
<a
114114
css={sharedStyles.articleLayout.editLink}
115-
href={`https://github.com/reactjs/reactjs.org/tree/master/${
115+
href={`https://github.com/reactjs/it.reactjs.org/tree/master/${
116116
markdownRemark.fields.path
117117
}`}>
118118
Edit this page

src/html.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const JS_NPM_URLS = [
77
export default class HTML extends React.Component {
88
render() {
99
return (
10-
<html lang="en" {...this.props.htmlAttributes}>
10+
<html lang="it" {...this.props.htmlAttributes}>
1111
<head>
1212
{JS_NPM_URLS.map(url => (
1313
<link key={url} rel="preload" href={url} as="script" />

src/site-constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// NOTE: We can't just use `location.toString()` because when we are rendering
99
// the SSR part in node.js we won't have a proper location.
10-
const urlRoot = 'https://reactjs.org';
10+
const urlRoot = 'https://it.reactjs.org';
1111
const version = '16.8.4';
1212
const babelURL = 'https://unpkg.com/[email protected]/babel.min.js';
1313

0 commit comments

Comments
 (0)