mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-20 17:22:08 +03:00
25 lines
312 B
Markdown
25 lines
312 B
Markdown
|
## Running Example
|
||
|
|
||
|
Ensure you have setup and installed all the project dependencies.
|
||
|
|
||
|
```
|
||
|
npm install -g tauri
|
||
|
git clone https://github.com/tauri-apps/tauri
|
||
|
cd examples/react/next.js
|
||
|
yarn
|
||
|
cargo install tauri-cli
|
||
|
```
|
||
|
|
||
|
### Development
|
||
|
|
||
|
```
|
||
|
yarn dev & tauri dev
|
||
|
```
|
||
|
|
||
|
### Production
|
||
|
|
||
|
```
|
||
|
yarn build
|
||
|
tauri build
|
||
|
```
|