simeon9696

Results 21 comments of simeon9696

> I am currently working on generating dynamic routes and providing payloads within the nuxt generate hooks. > If it wasnt for your bug fix of the **generate timeout** I...

@Flawe not entirely, you can use [ngrok ](https://www.npmjs.com/package/ngrok)to create an http/https tunnel. It's really simple, just install it globally then use `ngrok http `. It'll give you a link that's...

I'm not sure that ```load bundle``` is a valid method? What are you trying to do?

Your await should be in your try catch statement. Your messageRef is a reference to your actual message document. It's not an operation to be executed or to be awaited...

I think I found out why but I've no idea how to fix it. Fetching things on the server is trying to pull it from production and I'm currently using...

Couldn't figure this out but my workaround is to fetchOnServer only in production: ``` async fetch() { try { const l = await this.$fire.firestore.collection('products').get() this.products = l.docs.map((doc) => { return...

I think you should include that property only if you were getting the below error: ``` ⚠ Nuxt Warning The command 'nuxt generate' finished but did not exit after 5s...

Lighthouse by default applies 4x throttling to simulate a 3G/ low quality 4G connection. So I think unless you really optimize your site you'll see bad scores there. A better...

Lighthouse mobile score as requested w/ simulated throttling ![image](https://user-images.githubusercontent.com/31748055/82398934-ff892e00-9a21-11ea-988f-aa611cd0a2e4.png) And applied throttling: ![image](https://user-images.githubusercontent.com/31748055/82399218-a5d53380-9a22-11ea-955c-62068996503a.png) I think it's okay, and you're right if you start building your app on this baseline then...

> @HoehensteigerGames > > I wrote a vue-template-compiler module so it can inject the svg path directly in the compiled template, so in 95% of use cases no need to...