We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cb05c8 commit bc1b329Copy full SHA for bc1b329
1 file changed
src/config.ts
@@ -28,7 +28,7 @@ const config = {
28
// External links
29
links: {
30
github: "https://github.com/natebwangsut",
31
- instagram: "https://stagram.com/natebwangsut",
+ instagram: "https://instagram.com/natebwangsut",
32
linkedin: "https://linkedin.com/in/natebwangsut/",
33
twitter: "https://twitter.com/natebwangsut",
34
},
@@ -43,7 +43,7 @@ if (config.pathPrefix !== "/") {
43
}
44
45
// Make sure siteUrl doesn't have an ending forward slash
46
-if (config.siteUrl.substr(-1) === "/")
+if (config.siteUrl.endsWith("/"))
47
config.siteUrl = config.siteUrl.slice(0, -1);
48
49
export default config;
0 commit comments