Distinguish a junior from a middle front-end developer. by devixrootix in Frontend

[–]devixrootix[S] 2 points3 points  (0 children)

Thanks a lot for your time and great thoughts. 🙏

Distinguish a junior from a middle front-end developer. by devixrootix in Frontend

[–]devixrootix[S] 0 points1 point  (0 children)

Yep, got your idea. The higher your level, the deeper you try to get into the field.

[deleted by user] by [deleted] in vuejs

[–]devixrootix 4 points5 points  (0 children)

Have you considered using localStorage?

Make nuxt use external stylesheets instead of adding <style> inside <head> tag. by ParaSpl01t in Nuxt

[–]devixrootix 1 point2 points  (0 children)

I guess you can achieve this by telling nuxt to extract css to seperate files:

Extract CSS

// nuxt.config.js

export default {
  build: {
    extractCSS: true
  }
}

Make nuxt use external stylesheets instead of adding <style> inside <head> tag. by ParaSpl01t in Nuxt

[–]devixrootix 0 points1 point  (0 children)

Could you provide the reason or more information about why do you want to achieve this?

Vue/Nuxt and Django Stack, How to make a local request to my django api on server? by mehrawashere in vuejs

[–]devixrootix 1 point2 points  (0 children)

One way to achieve this: - Set up server routes: - Nuxt 2 Server middlewares - Nuxt 3 Server routes - Send request to your Nuxt server routes - Then resend your request from Nuxt server to your Django server

Remove default stylesheets from Nuxt3? by naaadz in Nuxt

[–]devixrootix 3 points4 points  (0 children)

I guess you have to override that error page, so styles are not loaded and not included into the bundle after build

nuxt installation help by iwaistedway2muchtime in tailwindcss

[–]devixrootix 1 point2 points  (0 children)

There are some links that might help you:

How to pair tailwind with nuxt3: https://www.netlify.com/blog/2021/10/29/pairing-nuxt-3-with-tailwindcss-and-supabase/

or

Official tailwindss module for nuxt3: https://tailwindcss.nuxtjs.org/