Skip to content

Commit c0d9ee9

Browse files
authored
fix URI (#340)
1 parent 52c6d2a commit c0d9ee9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
| 🇺🇸 [English](README.md) | 🇷🇺 [Russian](README_RU.md) | 🇵🇹 [Portuguese](README_PT.md) |
88
| ----------------------- | -------------------------- | ---------------------------- |
99

10-
A Minecraft client running in a web page. **Live demo at https://webclient.prismarine.js.org/**
10+
A Minecraft client running in a web page. **Live demo at https://prismarinejs.github.io/prismarine-web-client/**
1111

1212

1313
## How it Works
@@ -22,7 +22,7 @@ Check these modules if you want to understand more how it works and contribute!
2222
![Screenshot of prismarine-web-client in action](screenshot.png)
2323

2424
## Live Demo
25-
Click on this link to open it in your browser, no installation necessary: https://webclient.prismarine.js.org/
25+
Click on this link to open it in your browser, no installation necessary: https://prismarinejs.github.io/prismarine-web-client/
2626

2727
*Tested on Chrome & Firefox for desktop platforms.*
2828

README_PT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
| 🇺🇸 [English](README.md) | 🇷🇺 [Russian](README_RU.md) | 🇵🇹 [Portuguese](README_PT.md) |
88
| ----------------------- | -------------------------- | ---------------------------- |
99

10-
Um cliente de Minecraft a funcionar numa página web. **Demostração em https://webclient.prismarine.js.org/**
10+
Um cliente de Minecraft a funcionar numa página web. **Demostração em https://prismarinejs.github.io/prismarine-web-client/**
1111

1212
## Como funciona
1313
prismarine-web-client executa mineflayer e prismarine-viewer no teu navegador, que se conecta por WebSocket a uma proxy
@@ -21,7 +21,7 @@ Da uma olhada nestes módulos se quiseres entender mais sobre como isto funciona
2121
![Captura de tela do prismarine-web-client em ação](screenshot.png)
2222

2323
## Demostração ao vivo
24-
Clica neste endereço para o abrires no navegador, sem instalação necessária: https://webclient.prismarine.js.org/
24+
Clica neste endereço para o abrires no navegador, sem instalação necessária: https://prismarinejs.github.io/prismarine-web-client/
2525

2626
*Testado no Chrome & Firefox para plataformas desktop.*
2727

README_RU.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
| 🇺🇸 [English](README.md) | 🇷🇺 [Russian](README_RU.md) | 🇵🇹 [Portuguese](README_PT.md) |
88
| ----------------------- | -------------------------- | ---------------------------- |
99

10-
Клиент Minecraft, запущенный на веб-странице. **Демонстрация на https://webclient.prismarine.js.org/**
10+
Клиент Minecraft, запущенный на веб-странице. **Демонстрация на https://prismarinejs.github.io/prismarine-web-client/**
1111

1212

1313
## Как это работает
@@ -22,7 +22,7 @@ prismarine-web-client запускает mineflayer и prismarine-viewer в ва
2222
![Screenshot of prismarine-web-client in action](screenshot.png)
2323

2424
## Демонстация
25-
Нажмите на эту ссылку, чтобы открыть ее в вашем браузере, установка не требуется: https://webclient.prismarine.js.org/
25+
Нажмите на эту ссылку, чтобы открыть ее в вашем браузере, установка не требуется: https://prismarinejs.github.io/prismarine-web-client/
2626

2727
*Протестировано в Chrome и Firefox для настольных платформ.*
2828

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0'>
1313
<meta property="og:title" content="Prismarine Web Client" />
1414
<meta property="og:type" content="website" />
15-
<meta property="og:url" content="https://webclient.prismarine.js.org" />
16-
<meta property="og:image" content="https://webclient.prismarine.js.org/favicon.png" />
15+
<meta property="og:url" content="https://prismarinejs.github.io/prismarine-web-client/" />
16+
<meta property="og:image" content="https://prismarinejs.github.io/prismarine-web-client/favicon.png" />
1717
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
1818
</head>
1919
<body>

webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const config = {
1010
output: {
1111
path: path.resolve(__dirname, './public'),
1212
filename: './index.js',
13-
publicPath: '/'
13+
publicPath: './'
1414
},
1515
resolve: {
1616
alias: {

0 commit comments

Comments
 (0)