https://github.com/veaba/rsbuild-pnpm-npm
https://github.com/veaba/rsbuild-pnpm-npm
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/veaba/rsbuild-pnpm-npm
- Owner: veaba
- Created: 2023-11-27T15:52:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-03T06:43:27.000Z (over 2 years ago)
- Last Synced: 2025-01-30T17:39:37.960Z (over 1 year ago)
- Language: JavaScript
- Size: 317 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rsbuild Project
## pnpm 无法运行

Install the dependencies:
```bash
pnpm install
```
Start the dev server:
```bash
pnpm dev
```
Build the app for production:
```bash
pnpm build
```
Preview the production build locally:
```bash
pnpm preview
```
## npm 可以运行
Install the dependencies:
```bash
npm install
```
Start the dev server:
```bash
npm dev
```
Build the app for production:
```bash
npm build
```
Preview the production build locally:
```bash
npm preview
```