https://github.com/markthree/nuxt-mon
使用 nuxt layer 来构建 monorepo 多应用
https://github.com/markthree/nuxt-mon
Last synced: about 2 months ago
JSON representation
使用 nuxt layer 来构建 monorepo 多应用
- Host: GitHub
- URL: https://github.com/markthree/nuxt-mon
- Owner: markthree
- License: mit
- Created: 2023-12-17T09:50:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-17T09:55:29.000Z (over 2 years ago)
- Last Synced: 2025-03-26T18:54:52.680Z (about 1 year ago)
- Language: Vue
- Size: 72.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nuxt-mon
使用 nuxt layer 来构建 monorepo 多应用
## tip
请在 theme 中构建共享内容
## 开发
### 安装
```shell
pnpm install
```
### 启动 h5
```shell
pnpm dev:h5
```
### 打包 h5
```shell
pnpm dev:h5
```
### 启动 web
```shell
pnpm dev:web
```
### 打包 web
```shell
pnpm dev:web
```
### 启动 admin
```shell
pnpm dev:admin
```
### 打包 admin
```shell
pnpm build:admin
```
### 同时打包所有内容
```shell
pnpm build:*
```