Skip to content

Commit f8a121d

Browse files
committed
Merge branch 'develop' of github.com:coderbotorg/docs into develop
2 parents 3d0439f + a317ee8 commit f8a121d

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.DS_Store
12
*.swp
23
pages/.vuepress/dist
34

pages/.vuepress/config.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module.exports = {
2-
locales:{
3-
'/': {
4-
lang: 'it-IT', // this will be set as the lang attribute on <html>
5-
title: 'Documentazione di CoderBot',
6-
description: 'Guide e istruzioni per l\'utilizzo di CoderBot'
2+
locales: {
3+
"/": {
4+
lang: "it-IT", // this will be set as the lang attribute on <html>
5+
title: "Documentazione di CoderBot",
6+
description: "Guide e istruzioni per l'utilizzo di CoderBot"
77
}
88
},
99
plugins: [
@@ -13,17 +13,17 @@ module.exports = {
1313
// We are serving on coderbot.org/docs, so set the baseURL accordingly
1414
// This variable is exposed on MD, HTML and Vue components as $withBase
1515
// E.g. <img :src="$withBase('/foo.png')" alt="foo">
16-
base: '/docs/',
16+
base: "/",
1717
themeConfig: {
1818
sidebar: [
19-
['/', 'Indice'],
20-
['/kit/', 'Montaggio'],
21-
['/description/', 'Elenco delle parti'],
22-
['/manual/', 'Configurazione'],
23-
['/usermanual/', 'Manuale d\'uso'],
24-
['/guides/', 'Guide']
19+
["/", "Indice"],
20+
["/kit/", "Montaggio"],
21+
["/description/", "Elenco delle parti"],
22+
["/manual/", "Configurazione"],
23+
["/usermanual/", "Manuale d'uso"],
24+
["/guides/", "Guide"]
2525
],
2626
// Based on last git commit, offered by @vuepress/plugin-last-updated
27-
lastUpdated: 'Ultimo aggiornamento', // string | boolean
27+
lastUpdated: "Ultimo aggiornamento" // string | boolean
2828
}
29-
}
29+
};

0 commit comments

Comments
 (0)