Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohitkrai03/vue-parcel-example
Minimum viable Vue app with Parcel Bundler
https://github.com/rohitkrai03/vue-parcel-example
Last synced: about 1 month ago
JSON representation
Minimum viable Vue app with Parcel Bundler
- Host: GitHub
- URL: https://github.com/rohitkrai03/vue-parcel-example
- Owner: rohitkrai03
- License: mit
- Created: 2017-12-07T10:50:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T09:17:04.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T02:15:22.887Z (3 months ago)
- Language: HTML
- Size: 526 KB
- Stars: 29
- Watchers: 3
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vue Parcel Example
A minimum viable Vuejs app with [Parcel Bundler](https://parceljs.org).
## Getting started
Clone and install deps
```
git clone [email protected]:rohitkrai03/vue-parcel-example.git
cd vue-parcel-example
yarn
yarn dev
```Then open `http://localhost:1234` and edit `index.js` and press save. Parcel will automagically hot reload you files whenever you make changes.
## Building for Production
```
yarn run build
```This will compile your JS and copy your `index.html` to the `dist` folder which you can deploy whereever as as a good ol' webpage.
> Note: [There is a bug in Parcel right now messing up minified builds with uglifyjs](https://github.com/parcel-bundler/parcel/issues/8)
> Note: There is some issue because of which `import Vue from 'vue'` is importing runtime build of vue rather than full which is why CDN version is used instead.