this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

1# blog 2 3[îles]: https://github.com/ElMassimo/iles 4[configuration reference]: https://iles-docs.netlify.app/config 5 6This template should help get you started developing with [îles]. 7 8## Recommended IDE Setup 9 10[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur). 11 12## Type Support for `.vue` Imports in TS 13 14Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic `PageComponent` type by default. In most cases this is fine if you don't really care about component prop types outside of templates. 15 16However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette. 17 18## Customize configuration 19 20See îles [Configuration Reference]. 21 22## Project Setup 23 24```sh 25npm install 26``` 27 28### Compile and Hot-Reload for Development 29 30```sh 31npm run dev 32``` 33 34### Type-Check, Compile and Minify for Production 35 36```sh 37npm run build 38``` 39 40### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction) 41 42```sh 43npm run test:unit # or `npm run test:unit:ci` for headless testing 44``` 45 46### Run End-to-End Tests with [Cypress](https://www.cypress.io/) 47 48```sh 49npm run test:e2e # or `npm run test:e2e:ci` for headless testing 50```