Relative Content

Tag Archive for javascriptreactjsnode.jstypescriptnext.js

Nextjs next build fails when I have svgr svg component

import * as Brands from ‘@/components/icons/brands’ export async function Signup() { const provider = { name: ‘Google’, icon: Brands.Google, id: ‘google’ } return <provider.icon /> } This fails with a cryptic error message when I do a next build. import Discord from ‘./discord.svg’ import GitHub from ‘./github.svg’ import Google from ‘./google.svg’ import Microsoft from ‘./microsoft.svg’ […]

Nextjs next build fails when I have svgr svg component

import * as Brands from ‘@/components/icons/brands’ export async function Signup() { const provider = { name: ‘Google’, icon: Brands.Google, id: ‘google’ } return <provider.icon /> } This fails with a cryptic error message when I do a next build. import Discord from ‘./discord.svg’ import GitHub from ‘./github.svg’ import Google from ‘./google.svg’ import Microsoft from ‘./microsoft.svg’ […]

Cannot navigate on page load in react.js

I am trying to access a route which should redirect the user back to homepage when postOperations isn’t set in the localStorage.
Here’s the code, just check the useEffect and first component inside return() to save your time.