parcel-vue-cli v1.1.0
parcel-vue-cli
Installation
npm install parcel-vue-cli -gInitialization
parcel-vue-cli init <projectName>View version
parcel-vue-cli -vparcelVueApp
Description
Blazing fast, zero configuration vue application bundler.
Installation
npm installInstructions
- Compiles and hot-reloads for development
npm run serve- Compiles and minifies for production
npm run buildAttention
If you need to introduce pictures, you may need to look at the following points.
Using the Parcel transformer @parcel/transformer-image you can resize, change the format and quality of an image.
To do these image transformations we rely on the image transformation library Sharp, Therefore, you need to import several specific files into aspecific folder under the NPM cache path.
- Get files
Open web address:
https://github.com/lovell/sharp-libvips/
Find two files that match your computer environment.They are the following two files,xxx represents the computer environment.
libvips-8.9.0-xxx.tar.gz
libvips-8.10.5-xxx.tar.brdarwin-x64 in Mac OS environment.
win32-x64 in Windows environment.
- Find folder
Type the following command to get the NPM cache path.
npm config get cacheAfter obtaining the path, under this path.Found _libvips this folder.Put the two files mentioned above into this folder and restart the installation command.
Contribution
- Fork the repository
- Create Feat_xxx branch
- Commit your code
- Create Pull Request