Btw, you could do the same thing with a Quasar Framework SPA, you'd just need to update the build command and publish directory accordingly (e.g. "quasar build" and "dist/spa"). Please Like, Share, Subscribe & Comment - it all helps me create more content for you! 👉 My Courses: dannys.link/courses 👉 Download Fudget: www.fudget.com 👉 My VSCode Setup: dannys.link/vscodesetup 👉 DONT CLICK THIS: dannys.link/dontclick
Great step by step tutorial. Just when I finished deploying I realised I have to change one last thing in the code, and the video was still running. You literally told me how to change it before I even had time to stop the video hah. Great job, thank you!
Hi Danny, thanks a lot for your great videos and courses! Best ever! A video or course how to use vuex with quasar pwa features like caches and request queues would be awesome!
good job Danny, it was awesome !!! I have another question for you, when I refresh my page in the browser I encountered to 404 error page. I think something related to vue-router, could you help me solve that problem?
Thanks for the video. I used your express backend tutorial to hide my api key from the frontend in my Vue weather app. When I deploy to Netlify I keep getting cors errors even though I'm allowing requests from any origin with the *wildcard on my Express app. Any advice for my particular problem?
Great video Danny. Does Netlify have the ability to send api requests? I want to make a stock tracking app, but I am unsure if I will be able to get the live prices/other data
I have this error, could you help me? 11:27:01 AM: Module not found: Can't resolve imported dependency "composables/ubigeo" Did you forget to install it? You can run: npm install --save composables/ubigeo my code in quasar.conf.js extendWebpack(cfg, { isServer, isClient }) { cfg.resolve.alias = { ...cfg.resolve.alias, // This adds the existing alias // Add your own alias like this composables: path.resolve(__dirname, './src/composables'), } },
Hi Danny, css transitions do not work after deploying on the online website (while in localhost they work). Do you have any idea what the reason may be?
Well, I thought you could just drag and drop the dist folder directly to netlifly. Yeah, I understand for a development lifecycle it is better to create a repo in github and then deploy from there...
Great video Danny, as always! Sometimes the best things in life are free: ua-cam.com/video/79SNvZi3ltE/v-deo.html I will definitely check out Netlify, looks very interesting. I should also work more with Github.
Btw, you could do the same thing with a Quasar Framework SPA, you'd just need to update the build command and publish directory accordingly (e.g. "quasar build" and "dist/spa").
Please Like, Share, Subscribe & Comment - it all helps me create more content for you!
👉 My Courses: dannys.link/courses
👉 Download Fudget: www.fudget.com
👉 My VSCode Setup: dannys.link/vscodesetup
👉 DONT CLICK THIS: dannys.link/dontclick
Great step by step tutorial. Just when I finished deploying I realised I have to change one last thing in the code, and the video was still running. You literally told me how to change it before I even had time to stop the video hah. Great job, thank you!
Haha thanks Dominik!
I have been looking all over to find a tutorial that works for me. I finally did with this video. Thanks a lot! It is is very much appreciated
Glad it helped!
You’ve simplified the web dev process. Really great. Waiting for the Quasar series. 👏👏👏
Thank Sajjal!
Excellent tutorial!! Thanks a lot.
Greetings from Lima Peru
Thanks. Greetings from Manchester!
Bro... You helped me a lot in my vue.js journey... Thank you so much... ❤❤
My pleasure Suhel! 👍
Excellent vídeo! The best. Congratulations!
Thank you very much!
Hi Danny, thanks a lot for your great videos and courses! Best ever!
A video or course how to use vuex with quasar pwa features like caches and request queues would be awesome!
Thanks kuxka. I’ll consider it.
Thanks for this another great video! Just curious why I can't view your site you have deployed in the video.
Thanks Jessie! It's working for me: vuetify-todo.netlify.app/
@@MakeAppswithDanny Thanks, sorry my bad. Typo.
Thank you so much for this useful information. I followed your tutorial and it was very fantastic!
Thanks Proyecto!
Great vid! Got it working straight away thank you!
Great!
Thank you Danny, you solved my problem!
Cool. Thanks Justyna!
Thank you so much, it was sooo helpful and straight to the point! Subbed!
Thanks Shayon! Welcome 👍
good job Danny, it was awesome !!! I have another question for you, when I refresh my page in the browser I encountered to 404 error page. I think something related to vue-router, could you help me solve that problem?
Hi Danny, do you also have a tutorial for hosting laravel app?
I'm afraid not...
Great advice. As usual.
Thanks Tony!
Awesome as always 👍😀
Thanks Ranga!
This was really helpful, thanks !
Glad it was helpful! 👍
Thank you! it was really helpful!
Glad it helped, Walter!
Thanks for the video! It really helped me a lot.
Glad it helped, Daniel!
Very very good tutorial!! Thanks a lot
Thanks Luc!
Great video man thank You.I suscribed of course You deserved that
Thanks for the sub, Rade!
Thanks for the video. I used your express backend tutorial to hide my api key from the frontend in my Vue weather app. When I deploy to Netlify I keep getting cors errors even though I'm allowing requests from any origin with the *wildcard on my Express app. Any advice for my particular problem?
Hmm I'm not sure James..
@@MakeAppswithDanny I think it's a browser specific thing. Appreciate your help and all the cool content you make!
That was really helpful! Thank you very much, mate! :)
My pleasure, Rodrigo!
Any chance to have a comparison between netflify and vecel ? im kinda curious about your opinion on this topic 🤔
Thanks keplerk. I'm not familar with vecel at the moment 👍
@@MakeAppswithDanny Damn ... i hate my cellphone some times, i meant vercel *
git commit -am "message" allows you to combine add and commit so you don't have to do that extra step
Ooh that's nice. Thanks!
Great infoes thank Danny.
Thanks Arif! 👍
This video is AWESOME
Thanks Blimy!
easy and to the point. love it.
Thanks Mohammed! 👍
Thank you Danny
You’re welcome Abie!
Great video Danny. Does Netlify have the ability to send api requests? I want to make a stock tracking app, but I am unsure if I will be able to get the live prices/other data
Sure I don't see why not. 👍
I have this error, could you help me?
11:27:01 AM: Module not found: Can't resolve imported dependency "composables/ubigeo"
Did you forget to install it? You can run: npm install --save composables/ubigeo
my code in quasar.conf.js
extendWebpack(cfg, { isServer, isClient }) {
cfg.resolve.alias = {
...cfg.resolve.alias, // This adds the existing alias
// Add your own alias like this
composables: path.resolve(__dirname, './src/composables'),
}
},
Not sure what's going on there, Shinobu...
Btw, you need to update your copyright information for your website! It's still on 2017
Oh yeah. Oops! Thanks for letting me know! I'll probably do a new website for Fudget 2 anyway. 👍
Hi Danny,
css transitions do not work after deploying on the online website (while in localhost they work).
Do you have any idea what the reason may be?
I'm not sure, but maybe the CSS file (for the transitions) is not being imported somehow...
number one, thanks a lot
Thanks Alessio! 👍
Could you do diploy with Heroku?
I think I covered that in the Instagram Clone playlist, Shinobu: ua-cam.com/play/PLAiDzIdBfy8h6HgfQg3namagsCUT0Y2Bs.html
Very nice video!
Thanks Antonio!
Thanks for this one
My pleasure Vishnu!
happy careca's day thank you!
Same to you, Pablo!
followed the entire process but the site returns "This site can’t be reached" when clicking the deployed url.
Hmm I'm not sure what's going there...
@@MakeAppswithDanny no worries, I think it had something to do with my ISP blocking netlify. thanks again and keep those videos going.
Dude please make more videos on vuetify for mobile!
Thanks I'll consider it.
whenever I try to push my repository to GitHub some files aren't pushed (nested folder) and the folder is empty. Please help !!
I'm not sure, that could be due to a number of things. Perhaps the folder is excluded in your gitignore file...
Well, I thought you could just drag and drop the dist folder directly to netlifly. Yeah, I understand for a development lifecycle it is better to create a repo in github and then deploy from there...
I didn’t know you could drag and drop to Netlify. How do you do that?
@@MakeAppswithDanny Here is the official video: ua-cam.com/video/vywDFg2uIxY/v-deo.html&feature=emb_title&ab_channel=Netlify
@@rickybarabba7866 wow that’s great to know, R&B. Thanks!
Allow me to be the first in the comments to say, "PENGUIN BALLS".
Keep the great content coming, Danny!
Ha! Thanks Brandon!
How to fix broken CSS on Netlify Deploy when using vue js.
I'm not sure, bud, is it to do with the path you set when importing the CSS file?
Thank you!!
Thanks for watching & commenting Rodrigo!
Made it simple
Thanks Cruz!
Thanks man :)
Pleasure!
how to click ^C in minute 1:10 ???
I try but I cant
You want to press Ctrl + C 👍
Netlify suspended my account right after i signed up. Used different email didn't helped.
I'm sure you could find other similar services with free options. Best of luck 👍
thank youu
My pleasure Glory 👍
Free hosting for Quasar?
Yeah you can host Quasar SPA too. You Just need to change the build command and dist path accordingly.
@@MakeAppswithDanny thanks bro.
Localbase concept super bro, i have one doubt, how to. Set autoincrement for id
@@pgmoorthy well the auto generated keys are already ordered, alphanumerically. However it’s not possible to set them to 1, 2, 3 etc.
@@MakeAppswithDanny ok bro.
great
Thanks AR! 👍
Great video Danny, as always! Sometimes the best things in life are free: ua-cam.com/video/79SNvZi3ltE/v-deo.html I will definitely check out Netlify, looks very interesting. I should also work more with Github.
Im first command ☺️
😂
Penguinballs
🐧
Thanks a LOT! it was very useful
Glad it was helpful, Sed!
Thank you so much.
My pleasure Kowshar! 👍
Thank you very much
You are welcome 👍
Very helpful video! Thanks!
Glad it was helpful, Bruno!
thank you very much !
You are welcome, Inomjon!
Thank you 👍👍👍👍
Welcome 👍