Hello!
I made a vuejs app to understand both vuejs and css(I learned both of them very recently). However, when i try to deploy it in Netlify(As per the instructions in vuejs documentations of hosting in netlify), my css doesnt get rendered even if i can see them in the DOM.
The Website: https://5f14ece18c76d30eee2d416b--condescending-mclean-801694.netlify.app/#/
In the website you will see all my css actually gets rendered to the DOM. There's an alert function in the 'contact me' buttons too that actually work. But for some reason the styling isnt working at all. I used global scoped css for my styles. And i dont even know why some pages such as the '/my-work' page gets rendered with its styles but not the others. This is super confusing.
Im using Vue cli3 and vuejs2 so I dont really have a vue.config.js file nor a webpack file. But i made it and i only have this code because i was having 404 errors too(I forgot to redirect everything to the homepage and let vue handle it)
module.exports = {
publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
};
This is my github repository for the website - https://github.com/Pandaaa-dev/wasifPortofolio/tree/finished
I honestly dont know what im doing wrong. There was an identical problem I followed in the questions here but even that doesnt work(the solution was to use global scoped style tags). And I'm pretty new to this place so I'm not really sure if my question is informative enough in the first place. But you guys are ofc more good at this stuff than me so hopefully I'll get a solution Please help T.T.