Working on frontend only
See original GitHub issueI’m trying to implement the basic example inside an app that already use _app.js
and _document.js
This is my test.js
page:
import React from 'react';
import { NextSeo } from 'next-seo';
export default () => (
<>
<NextSeo
title="Simple Usage Example"
description="A short description goes here."
/>
<p>Simple Usage</p>
</>
);
I can see it working only client-side, if I view page source the title and description are not set.
If I remove _app.js
and _document.js
I can see the title and description correctly in the page source.
What am I missing?
Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:20 (3 by maintainers)
Top Results From Across the Web
Is it okay for a web developer to know only front end? - Quora
Front-end development requires writing code which needs to work on multiple different devices varied by size, performance, capabilities and human interaction.
Read more >Blocks not working on frontend only - WordPress.org
No plugins, and tried with Twenty Twenty, and Twenty Nineteen (and my own theme). Build.js is not being called on the frontend, I...
Read more >Hired as a back-end developer, only given front end work?
I was hired at a company to do back-end work, but I've only been given front-end work? How do you deal with this?...
Read more >How to build a frontend, when the backend is not ready
Building a frontend is not an easy job, sometimes the frontend and the backend team should work in parallel, with this guide they...
Read more >How to work as a solo frontend developer - DEV Community
Working in a team is great. You can progress really fast and learn a lot from your colleagues. Having another set of eyes...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I am still having this issue when i run next build && next export my meta datas are not pre-rendered and instead are added on client side 😕
@talentlessguy
Please see the CodeSandbox here. This works as expected with
next build
andnext export
.