We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to run the seo-analyzer in a Next.js (13.2.3) project.
But I'm getting the following output: π Ready on http://localhost:3000
π Get sitemap from http://localhost:3000
β Links not found
Sitemap is generated by next-sitemap on build and is exported to the public folder.
I guess the issue is that seo-analyzer can't detect the sitemap?
I've verified that the sitemap is reachable via http://localhost:3000/sitemap.xml in local development.
How can I resolve this?
Many thanks in advance!
seo-analyzer.js require('dotenv').config() const SeoAnalyzer = require('seo-analyzer') new SeoAnalyzer() .inputNextJs(3000) .addRule( 'titleLengthRule', { min: 10, max: 50 }, 'imgTagWithAltAttributeRule', 'aTagWithRelAttributeRule', 'metaSocialRule', { properties: [ 'og:url', 'og:type', 'og:site_name', 'og:title', 'og:description', 'og:image', 'og:image:width', 'og:image:height', 'twitter:card', 'twitter:text:title', 'twitter:description', 'twitter:image:src', 'twitter:url', ], }, 'canonicalLinkRule' ) .outputConsole()
public/ β£ admin/ β β£ assets/ β β£ .gitignore β β index.html β£ fonts/ β β£ HelveticaNowText-Bold.woff2 β β HelveticaNowText-Regular.woff2 β£ scripts/ β β£ scrollbar-width.js β β£ smartlook.js β β£ theme.js β β window-height.js β£ styles/ β β£ globals.css β β swiper.css β£ favicon.ico β£ logotype.svg β£ og_default.png β£ prisjakt.png β£ sitemap.xml β sponsors.webp
.next/ β£ cache/ β β£ images/ β β£ swc/ β β£ webpack/ β β next-server.js.nft.json β£ server/ β β£ chunks/ β β£ pages/ β β£ font-loader-manifest.js β β£ font-loader-manifest.json β β£ font-manifest.json β β£ middleware-build-manifest.js β β£ middleware-manifest.json β β£ middleware-react-loadable-manifest.js β β£ pages-manifest.json β β£ webpack-api-runtime.js β β webpack-runtime.js β£ static/ β β£ Yv9_L8DMQcC1hKfxrYKCn/ β β£ chunks/ β β£ css/ β β media/ β£ BUILD_ID β£ build-manifest.json β£ export-marker.json β£ images-manifest.json β£ next-server.js.nft.json β£ package.json β£ prerender-manifest.json β£ react-loadable-manifest.json β£ required-server-files.json β£ routes-manifest.json β trace
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to run the seo-analyzer in a Next.js (13.2.3) project.
But I'm getting the following output:
π Ready on http://localhost:3000
π Get sitemap from http://localhost:3000
β Links not found
Sitemap is generated by next-sitemap on build and is exported to the public folder.
I guess the issue is that seo-analyzer can't detect the sitemap?
I've verified that the sitemap is reachable via http://localhost:3000/sitemap.xml in local development.
How can I resolve this?
Many thanks in advance!
The text was updated successfully, but these errors were encountered: