parcel-plugin-vue
parcel-plugin-vue copied to clipboard
⚠️ parcel-bundler/parcel @1.7.0 support Vue Now. This plugin will be not recommended.
There's a 7 day old issue in parcel where shorthand vue properties won't build for production https://github.com/parcel-bundler/parcel/issues/1124 I feel this is not an acceptable alternative at this point for most...
Using this parcel-plugin-vue, I found the generated bundle file does not include the comment of sourceMappingURL in the end. Causing the browser unable to map to the source files. I...
Some description. Show a repo url: https://github.com/lc60005457/parcel-vue-demo | Software | Version(s) | | ----------------- | ---------- | | parcel-plugin-vue | | Parcel | | Vue | | Node | |...
Uncaught Error: Cannot find module 'vue-hot-reload-api' Show a repo url: https://github.com/chinadbo/vue-parcel | Software | Version(s) | | ----------------- | ---------- | | parcel-plugin-vue | 1.5.0 | | Parcel-bundler | 1.6.2...
I'm having an issue if i'm using async import and css import. Seems it's issue related to HMR index.js ``` import './bug.css'; setTimeout(() => { import('./test') .then(module => console.log(module)) ;...
I'm not skilful and absolutely not confident in my solution, however it works with parcel 1.6.2 Issue: [#29](https://github.com/BoltDoggy/parcel-plugin-vue/issues/29)
``` import someJs from 'someJs' console.log(someJs) ``` It runs right. ``` import someJs from 'someJs' console.log(someJs) import com1 from 'com1.vue' import com2 from 'com2.vue' ``` It goes wrong. The brower...
This is a great plugin of parcel bundler, but I want extracting all component CSS into a single file for better performance. How can I do that?