Skip to content

Commit adc20d5

Browse files
committed
Removed expired domain: create-rust-app.dev
1 parent 46965a5 commit adc20d5

File tree

2 files changed

+41
-42
lines changed

2 files changed

+41
-42
lines changed

docs/docusaurus.config.js

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
// @ts-check
22
// Note: type annotations allow type checking and IDEs autocompletion
33

4-
const lightCodeTheme = require('prism-react-renderer/themes/github')
5-
const darkCodeTheme = require('prism-react-renderer/themes/dracula')
4+
const lightCodeTheme = require("prism-react-renderer/themes/github");
5+
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
66

77
/** @type {import('@docusaurus/types').Config} */
88
const config = {
9-
title: 'Create Rust App',
10-
tagline: 'Set up a modern rust+react web app by running one command.',
11-
url: 'https://create-rust-app.dev',
12-
baseUrl: '/',
13-
onBrokenLinks: 'throw',
14-
onBrokenMarkdownLinks: 'warn',
15-
favicon: 'img/favicon.ico',
16-
organizationName: 'Wulf',
17-
projectName: 'create-rust-app',
9+
title: "Create Rust App",
10+
tagline: "Set up a modern rust+react web app by running one command.",
11+
url: "https://create-rust-app.dev",
12+
baseUrl: "/create-rust-app/",
13+
onBrokenLinks: "throw",
14+
onBrokenMarkdownLinks: "warn",
15+
favicon: "img/favicon.ico",
16+
organizationName: "Wulf",
17+
projectName: "create-rust-app",
1818
presets: [
1919
[
20-
'@docusaurus/preset-classic',
20+
"@docusaurus/preset-classic",
2121
/** @type {import('@docusaurus/preset-classic').Options} */
2222
({
2323
docs: {
24-
sidebarPath: require.resolve('./sidebars.js'),
24+
sidebarPath: require.resolve("./sidebars.js"),
2525
// Please change this to your repo.
26-
editUrl: 'https://github.com/Wulf/create-rust-app/edit/main/docs/',
26+
editUrl: "https://github.com/Wulf/create-rust-app/edit/main/docs/",
2727
},
2828
blog: {
2929
showReadingTime: true,
3030
// Please change this to your repo.
3131
editUrl:
32-
'https://github.com/Wulf/create-rust-app/edit/main/docs/blog/',
32+
"https://github.com/Wulf/create-rust-app/edit/main/docs/blog/",
3333
},
3434
theme: {
35-
customCss: require.resolve('./src/css/custom.css'),
35+
customCss: require.resolve("./src/css/custom.css"),
3636
},
3737
}),
3838
],
@@ -42,53 +42,53 @@ const config = {
4242
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
4343
({
4444
navbar: {
45-
title: 'Create Rust App',
45+
title: "Create Rust App",
4646
logo: {
47-
alt: 'Create Rust App Logo',
48-
src: 'img/cra-logo-rust.svg',
49-
srcDark: 'img/cra-logo-rust-white.svg',
47+
alt: "Create Rust App Logo",
48+
src: "img/cra-logo-rust.svg",
49+
srcDark: "img/cra-logo-rust-white.svg",
5050
},
5151
items: [
5252
{
53-
type: 'doc',
54-
docId: 'intro',
55-
position: 'left',
56-
label: 'Docs',
53+
type: "doc",
54+
docId: "intro",
55+
position: "left",
56+
label: "Docs",
5757
},
58-
{ to: '/blog', label: 'Blog', position: 'left' },
58+
{ to: "/blog", label: "Blog", position: "left" },
5959
{
60-
href: 'https://github.com/Wulf/create-rust-app',
61-
label: 'GitHub',
62-
position: 'right',
60+
href: "https://github.com/Wulf/create-rust-app",
61+
label: "GitHub",
62+
position: "right",
6363
},
6464
],
6565
},
6666
footer: {
67-
style: 'dark',
67+
style: "dark",
6868
links: [
6969
{
70-
title: 'Links',
70+
title: "Links",
7171
items: [
7272
{
73-
label: 'Blog',
74-
to: '/blog',
73+
label: "Blog",
74+
to: "/blog",
7575
},
7676
{
77-
label: 'Docs',
78-
to: '/docs/intro',
77+
label: "Docs",
78+
to: "/docs/intro",
7979
},
8080
],
8181
},
8282
{
83-
title: 'More',
83+
title: "More",
8484
items: [
8585
{
86-
label: 'GitHub',
87-
href: 'https://github.com/Wulf/create-rust-app',
86+
label: "GitHub",
87+
href: "https://github.com/Wulf/create-rust-app",
8888
},
8989
{
90-
label: 'Crates.io',
91-
href: 'https://crates.io/crates/create-rust-app',
90+
label: "Crates.io",
91+
href: "https://crates.io/crates/create-rust-app",
9292
},
9393
],
9494
},
@@ -99,6 +99,6 @@ const config = {
9999
darkTheme: darkCodeTheme,
100100
},
101101
}),
102-
}
102+
};
103103

104-
module.exports = config
104+
module.exports = config;

docs/static/CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)