Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justinekizhak/svelte-tailwind-template
SvelteJS and TailwindCSS template
https://github.com/justinekizhak/svelte-tailwind-template
sveltejs tailwindcss
Last synced: 3 months ago
JSON representation
SvelteJS and TailwindCSS template
- Host: GitHub
- URL: https://github.com/justinekizhak/svelte-tailwind-template
- Owner: justinekizhak
- Archived: true
- Created: 2019-09-02T12:35:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-18T03:56:32.000Z (over 4 years ago)
- Last Synced: 2024-08-04T01:16:22.343Z (6 months ago)
- Topics: sveltejs, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 342 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Svelte Tailwind template
A starter for building Svelte web apps with tailwindcss.
- [Getting Started](#getting-started)
- [Building and Developing](#building-and-developing)
- [Build](#build)
- [Development](#development)
- [Credits](#credits)## Getting Started
```bash
degit gitlab:justinekizhak/svelte-tailwind-template my-project
```Then, install the dependencies:
```bash
yarn install # or npm install
```Use [Tailwindcss](https://tailwindcss.com/)
## Building and Developing
### Build
```bash
yarn build # or npm run build
```### Development
Development mode will:
- build on file change
- serve locally atlocalhost:5000
- live reload```bash
yarn run dev # or npm run dev
```## Credits
Inspired and forked from:
- [sveltejs/template](https://github.com/sveltejs/template)
- [marcograhl/tailwindcss-svelte-starter](https://github.com/marcograhl/tailwindcss-svelte-starter)
- [noprodev/svelte-starter-postcss](https://github.com/noprodev/svelte-starter-postcss)