mirror of
https://github.com/LeNei/dioxus-tailwind.git
synced 2026-02-13 14:54:45 +00:00
33 lines
421 B
Markdown
33 lines
421 B
Markdown
# dioxus-tailwind
|
|
|
|
## Installation
|
|
|
|
### Install dependencies
|
|
```
|
|
npm install
|
|
```
|
|
|
|
## Usage
|
|
|
|
#### Start a `dev-server` for the project:
|
|
|
|
```
|
|
dioxus serve
|
|
```
|
|
|
|
or package this project:
|
|
|
|
```
|
|
dioxus build --release
|
|
```
|
|
|
|
## Project Structure
|
|
|
|
```
|
|
.project
|
|
- public # save the assets you want include in your project.
|
|
- src # put your code
|
|
- - utils # save some public function
|
|
- - components # save some custom components
|
|
```
|