-
Install dependencies:
npm i
-
Run the app in the development mode:
npm run dev
The page will reload if you make edits.
-
Update the
WEBAPP_URL
environment variableSince Telegram only accepts HTTPS URLs for Web Apps, you'll need to use a tunneling software like serveo or ngrok (list of tunnelling software and services):
# serveo usage example (no client required) ssh -R 80:localhost:5173 serveo.net # ngrok usage example ngrok http 5173
Note:
5173
is default port. If the port differs from5173
, change it accordingly.Set the environment variable
WEBAPP_URL
to obtained link.
-
Install dependencies:
npm i
-
Build the app for production to the
dist
folder:npm run build
-
Deploy the
dist
folder to any static hosting provider. -
Set the environment variable
WEBAPP_URL
to your link.
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup>
SFCs, check out the script setup docs to learn more.
- VS Code + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
TypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue
types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensions
from VSCode's command palette - Find
TypeScript and JavaScript Language Features
, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Window
from the command palette.