Member Since 6 Years Ago
1,605 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Replied to Laravel Mix 6.0 + Vue3 - Huge Bundle Size / How To Use Only Vue Runtime?
Agreed that it would probably be a sensible default. But leaving it off seems to be the safest option in terms of reducing friction and confusion since it works either way.
I wonder if there is an easy way to determine at compile time whether the template compiler is needed in the prod build or not. This would be a really powerful feature.
Anyway, thanks again and have an even nicer day! :) (Friday 13th in 2020, what could possibly go wrong, right?)
Replied to Laravel Mix 6.0 + Vue3 - Huge Bundle Size / How To Use Only Vue Runtime?
Duuuude.... How did I miss that?!
This option does not seem to be mentioned anywhere in the docs though, but maybe I'm just too dumb to use google.
Regardless - thank you so much, this did the trick!
Started a new Conversation Laravel Mix 6.0 + Vue3 - Huge Bundle Size / How To Use Only Vue Runtime?
I'm using a Mix 6.0.0-beta.14 with Vue 3 (no Laravel involved here). I've got a very basic app.js
file:
// app.js
import { createApp } from "vue"
createApp({
render: (h) => {
return h('div', {})
}
}).mount('#app')
which I run through mix: mix.js('app.js', 'dist/')
with npm run prod
This gives me a bundle size of 47.7 KiB (19 KiB gzipped). Fair enough.
Now I want to use this awesome single file component :
<!-- AwesomeComponent.vue -->
<template>
<div>Hello there</div>
</template>
<script>
export default {}
</script>
So i pull it in in my app.js
:
// app.js
import { createApp } from "vue"
import AwesomeComponent from './AwesomeComponent.vue'
// ...
Since now there is some vue specific stuff involved, I need to tell mix to handle that:
mix.js('app.js', 'dist/').vue()
When I now npm run prod
, I get a bundle size of 348 KiB (102 KiB gzipped)!
That's quite a lot. My understanding is that mix handles all the single file components and transpiles templates into render functions, no? So in production we would only need the Vue runtime, which is supposed to be around 33 KiB gzipped. But it looks like a full blown Vue bundle is pulled in.
What am I missing? How do I reduce the bundle size?