Vue 3 + TypeScript + Vite
August 17, 2023 ยท View on GitHub
Usage
Development mode
-
Install dependencies:
npm i -
Run the app in the development mode:
npm run devThe page will reload if you make edits.
-
Update the
WEBAPP_URLenvironment 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 5173Note:
5173is default port. If the port differs from5173, change it accordingly.Set the environment variable
WEBAPP_URLto obtained link.
Production mode
-
Install dependencies:
npm i -
Build the app for production to the
distfolder:npm run build -
Deploy the
distfolder to any static hosting provider. -
Set the environment variable
WEBAPP_URLto your link.
Vue 3 + TypeScript + Vite
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.
Recommended IDE Setup
- VS Code + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
Type Support For .vue Imports in TS
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 Extensionsfrom VSCode's command palette - Find
TypeScript and JavaScript Language Features, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Windowfrom the command palette.