-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
670 additions
and
5,960 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import type { MetadataRoute } from 'next' | ||
|
||
export default function robots(): MetadataRoute.Robots { | ||
return { | ||
rules: [ | ||
{ | ||
userAgent: ['mj12', 'Dotbot'], | ||
disallow: '/', | ||
}, | ||
{ | ||
userAgent: '*', | ||
allow: '/', | ||
}, | ||
|
||
], | ||
sitemap: 'https://spotify-dedup.com/sitemap.xml', | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||
<url> | ||
<loc>https://spotify-dedup.com</loc> | ||
<xhtml:link rel="alternate" hreflang="de" href="https://spotify-dedup.com/de" /> | ||
<xhtml:link rel="alternate" hreflang="es" href="https://spotify-dedup.com/es" /> | ||
<xhtml:link rel="alternate" hreflang="fr" href="https://spotify-dedup.com/fr" /> | ||
<xhtml:link rel="alternate" hreflang="id" href="https://spotify-dedup.com/id" /> | ||
<xhtml:link rel="alternate" hreflang="it" href="https://spotify-dedup.com/it" /> | ||
<xhtml:link rel="alternate" hreflang="nl" href="https://spotify-dedup.com/nl" /> | ||
<xhtml:link rel="alternate" hreflang="pl" href="https://spotify-dedup.com/pl" /> | ||
<xhtml:link rel="alternate" hreflang="pt" href="https://spotify-dedup.com/pt" /> | ||
<xhtml:link rel="alternate" hreflang="sv" href="https://spotify-dedup.com/sv" /> | ||
<xhtml:link rel="alternate" hreflang="tr" href="https://spotify-dedup.com/tr" /> | ||
</url> | ||
</urlset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
export const AvailableLanguages = [ | ||
'de', | ||
'en', | ||
'es', | ||
'fr', | ||
'id', | ||
'it', | ||
'nl', | ||
'pl', | ||
'pt', | ||
'sv', | ||
'tr', | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const nextConfig = { | ||
experimental: { | ||
reactCompiler: true, | ||
}, | ||
}; | ||
|
||
module.exports = nextConfig; |
Oops, something went wrong.