-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thanh Nguyen
committed
Apr 26, 2023
1 parent
1e37856
commit d9925a1
Showing
3 changed files
with
37 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,39 @@ | ||
# fe-tpl-bootstrap | ||
DO CMS Frontend as a VueJS project. | ||
|
||
## Structure | ||
- `./src/tpl-bootstrap`: Template `Bootstrap` | ||
- `./src/tpl-coderdocs`: Template `CoderDocs` | ||
- `./src/tpl-prettydocs`: Template `PrettyDocs` | ||
- `./src/_shared`: common assets shared by all template | ||
|
||
## Project setup | ||
``` | ||
```shell | ||
npm install | ||
``` | ||
|
||
### Compiles and hot-reloads for development | ||
``` | ||
npm run serve | ||
``` | ||
## Compiles and hot-reloads for development | ||
```shell | ||
# for template Bootstrap | ||
npm run serve:bootstrap | ||
|
||
### Compiles and minifies for production | ||
``` | ||
npm run build | ||
``` | ||
# for template CoderDocs | ||
npm run serve:coderdocs | ||
|
||
### Lints and fixes files | ||
# for template PrettyDocs | ||
npm run serve:prettydocs | ||
``` | ||
npm run lint | ||
|
||
## Compiles and minifies for production | ||
```shell | ||
# for template Bootstrap, output to dist/tpl-bootstrap | ||
npm run build:bootstrap | ||
|
||
# for template CoderDocs, output to dist/tpl-coderdocs | ||
npm run build:coderdocs | ||
|
||
# for template PrettyDocs, output to dist/tpl-prettydocs | ||
npm run build:prettydocs | ||
``` | ||
|
||
### Customize configuration | ||
## Customize configuration | ||
See [Configuration Reference](https://cli.vuejs.org/config/). |