WeekZim/SASS
0
1---2title: SASS3emoji: 🐢4colorFrom: purple5colorTo: indigo6sdk: static7pinned: false8app_build_command: npm run build9app_file: dist/index.html10---11 12# vue13 14This template should help get you started developing with Vue 3 in Vite.15 16## Recommended IDE Setup17 18[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).19 20## Type Support for `.vue` Imports in TS21 22TypeScript 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 [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.23 24## Customize configuration25 26See [Vite Configuration Reference](https://vite.dev/config/).27 28## Project Setup29 30```sh31npm install32```33 34### Compile and Hot-Reload for Development35 36```sh37npm run dev38```39 40### Type-Check, Compile and Minify for Production41 42```sh43npm run build44```45 46### Lint with [ESLint](https://eslint.org/)47 48```sh49npm run lint50```51 