mirror of
https://github.com/PrismarineJS/prismarine-web-client.git
synced 2024-11-23 16:17:49 -05:00
fix URI (#340)
This commit is contained in:
parent
52c6d2a9ff
commit
c0d9ee982a
5 changed files with 9 additions and 9 deletions
|
@ -7,7 +7,7 @@
|
|||
| 🇺🇸 [English](README.md) | 🇷🇺 [Russian](README_RU.md) | 🇵🇹 [Portuguese](README_PT.md) |
|
||||
| ----------------------- | -------------------------- | ---------------------------- |
|
||||
|
||||
A Minecraft client running in a web page. **Live demo at https://webclient.prismarine.js.org/**
|
||||
A Minecraft client running in a web page. **Live demo at https://prismarinejs.github.io/prismarine-web-client/**
|
||||
|
||||
|
||||
## How it Works
|
||||
|
@ -22,7 +22,7 @@ Check these modules if you want to understand more how it works and contribute!
|
|||
![Screenshot of prismarine-web-client in action](screenshot.png)
|
||||
|
||||
## Live Demo
|
||||
Click on this link to open it in your browser, no installation necessary: https://webclient.prismarine.js.org/
|
||||
Click on this link to open it in your browser, no installation necessary: https://prismarinejs.github.io/prismarine-web-client/
|
||||
|
||||
*Tested on Chrome & Firefox for desktop platforms.*
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
| 🇺🇸 [English](README.md) | 🇷🇺 [Russian](README_RU.md) | 🇵🇹 [Portuguese](README_PT.md) |
|
||||
| ----------------------- | -------------------------- | ---------------------------- |
|
||||
|
||||
Um cliente de Minecraft a funcionar numa página web. **Demostração em https://webclient.prismarine.js.org/**
|
||||
Um cliente de Minecraft a funcionar numa página web. **Demostração em https://prismarinejs.github.io/prismarine-web-client/**
|
||||
|
||||
## Como funciona
|
||||
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
|
|||
![Captura de tela do prismarine-web-client em ação](screenshot.png)
|
||||
|
||||
## Demostração ao vivo
|
||||
Clica neste endereço para o abrires no navegador, sem instalação necessária: https://webclient.prismarine.js.org/
|
||||
Clica neste endereço para o abrires no navegador, sem instalação necessária: https://prismarinejs.github.io/prismarine-web-client/
|
||||
|
||||
*Testado no Chrome & Firefox para plataformas desktop.*
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
| 🇺🇸 [English](README.md) | 🇷🇺 [Russian](README_RU.md) | 🇵🇹 [Portuguese](README_PT.md) |
|
||||
| ----------------------- | -------------------------- | ---------------------------- |
|
||||
|
||||
Клиент Minecraft, запущенный на веб-странице. **Демонстрация на https://webclient.prismarine.js.org/**
|
||||
Клиент Minecraft, запущенный на веб-странице. **Демонстрация на https://prismarinejs.github.io/prismarine-web-client/**
|
||||
|
||||
|
||||
## Как это работает
|
||||
|
@ -22,7 +22,7 @@ prismarine-web-client запускает mineflayer и prismarine-viewer в ва
|
|||
![Screenshot of prismarine-web-client in action](screenshot.png)
|
||||
|
||||
## Демонстация
|
||||
Нажмите на эту ссылку, чтобы открыть ее в вашем браузере, установка не требуется: https://webclient.prismarine.js.org/
|
||||
Нажмите на эту ссылку, чтобы открыть ее в вашем браузере, установка не требуется: https://prismarinejs.github.io/prismarine-web-client/
|
||||
|
||||
*Протестировано в Chrome и Firefox для настольных платформ.*
|
||||
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0'>
|
||||
<meta property="og:title" content="Prismarine Web Client" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://webclient.prismarine.js.org" />
|
||||
<meta property="og:image" content="https://webclient.prismarine.js.org/favicon.png" />
|
||||
<meta property="og:url" content="https://prismarinejs.github.io/prismarine-web-client/" />
|
||||
<meta property="og:image" content="https://prismarinejs.github.io/prismarine-web-client/favicon.png" />
|
||||
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -10,7 +10,7 @@ const config = {
|
|||
output: {
|
||||
path: path.resolve(__dirname, './public'),
|
||||
filename: './index.js',
|
||||
publicPath: '/'
|
||||
publicPath: './'
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
|
|
Loading…
Reference in a new issue