AAraceliinaraceliponce.hashnode.dev·Oct 15, 2023 · 2 min readHow to deploy your Vue+Vite portfolio to gh-pagesRequirements: Have a GitHub project on your local machine (that uses Vue and Vite, obviously). Steps: Set up the base in your vite.config.js file, as indicated in the guide at https://vitejs.dev/guide/static-deploy.html. If it is for a repository ...00
AAraceliinaraceliponce.hashnode.dev·Oct 4, 2023 · 1 min readThe <style lang="scss"> or <style lang="sass"> in VueAs you may know, when working with Vue files, we typically include three sections: template, style, and script, for each component. In the <style> section, you have the option to include the 'scoped' attribute, like this: <style scoped>. This attribu...00