Added vuejs instead of svelte

This commit is contained in:
2023-12-14 19:06:42 +01:00
parent 927a3b4777
commit eb541b7903
36 changed files with 4381 additions and 134 deletions

View File

@@ -1,38 +1,35 @@
# create-svelte
# deguapp
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
This template should help get you started developing with Vue 3 in Vite.
## Creating a project
## Recommended IDE Setup
If you're seeing this, you've probably already done this step. Congrats!
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
```bash
# create a new project in the current directory
npm create svelte@latest
## Customize configuration
# create a new project in my-app
npm create svelte@latest my-app
See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
npm install
```
## Developing
### Compile and Hot-Reload for Development
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
```sh
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
### Compile and Minify for Production
To create a production version of your app:
```bash
```sh
npm run build
```
You can preview the production build with `npm run preview`.
### Lint with [ESLint](https://eslint.org/)
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
```sh
npm run lint
```