File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export const metadata = {
1818 openGraph : {
1919 title : 'WebToolkit Pro - Free Online Developer Tools' ,
2020 description : 'Free, premium online developer tools and utilities for web professionals.' ,
21- url : 'https://abusufyan-netizen.github.io/webtoolkit_pro ' ,
21+ url : 'https://abusufyan-netizen.github.io' ,
2222 siteName : 'WebToolkit Pro' ,
2323 type : 'website' ,
2424 } ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Disallow: /_next/
88User-agent: Mediapartners-Google
99Allow: /
1010
11- Sitemap: https://abusufyan-netizen.github.io/webtoolkit_pro/ sitemap.xml`
11+ Sitemap: https://abusufyan-netizen.github.io/sitemap.xml`
1212
1313 return new NextResponse ( robots , {
1414 status : 200 ,
Original file line number Diff line number Diff line change 11import { NextResponse } from 'next/server'
22
33export async function GET ( ) {
4- const baseUrl = 'https://abusufyan-netizen.github.io/webtoolkit_pro '
4+ const baseUrl = 'https://abusufyan-netizen.github.io'
55 const now = new Date ( ) . toISOString ( )
66
77 const pages = [
Original file line number Diff line number Diff line change 1- const isGithubActions = process . env . GITHUB_ACTIONS || false
2- let assetPrefix = ''
3- let basePath = ''
4-
5- if ( isGithubActions ) {
6- const repo = process . env . GITHUB_REPOSITORY . replace ( / .* ?\/ / , '' )
7- assetPrefix = `/${ repo } /`
8- basePath = `/${ repo } `
9- }
10-
111/** @type {import('next').NextConfig } */
122const nextConfig = {
133 output : 'export' ,
144 trailingSlash : true ,
15- basePath : basePath ,
16- assetPrefix : assetPrefix ,
175 images : {
186 unoptimized : true
197 }
You can’t perform that action at this time.
0 commit comments