Files
tauri/examples/react/next.js/README.md
BenoitRanque 75f032ae52 Make yarn build consistent across examples (#215)
Document changes made in #200
2019-12-24 15:23:16 -06:00

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
```