@intlayer/docs 8.6.0 → 8.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/de/intlayer_with_tanstack+solid.md +1 -3
- package/docs/en/intlayer_with_tanstack+solid.md +1 -3
- package/docs/en-GB/intlayer_with_tanstack+solid.md +1 -3
- package/docs/es/intlayer_with_tanstack+solid.md +1 -3
- package/docs/fr/intlayer_with_tanstack+solid.md +1 -3
- package/docs/it/intlayer_with_tanstack+solid.md +1 -3
- package/docs/ja/intlayer_with_tanstack+solid.md +1 -3
- package/docs/ko/intlayer_with_tanstack+solid.md +1 -3
- package/docs/pt/intlayer_with_tanstack+solid.md +1 -3
- package/docs/ru/intlayer_with_tanstack+solid.md +1 -3
- package/docs/zh/intlayer_with_tanstack+solid.md +1 -3
- package/package.json +6 -6
|
@@ -879,9 +879,7 @@ Erstellen Sie dann eine Route `src/routes/sitemap[.]xml.ts`, die die Funktion `g
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -882,9 +882,7 @@ Then, create a `src/routes/sitemap[.]xml.ts` route that uses the `generateSitema
|
|
|
882
882
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
883
883
|
import { generateSitemap } from "intlayer";
|
|
884
884
|
|
|
885
|
-
const SITE_URL =
|
|
886
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
887
|
-
).replace(/\/$/, "");
|
|
885
|
+
const SITE_URL = "http://localhost:3000";
|
|
888
886
|
|
|
889
887
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
890
888
|
server: {
|
|
@@ -877,9 +877,7 @@ Then, create a `src/routes/sitemap[.]xml.ts` route that uses the `generateSitema
|
|
|
877
877
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
878
878
|
import { generateSitemap } from "intlayer";
|
|
879
879
|
|
|
880
|
-
const SITE_URL =
|
|
881
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
882
|
-
).replace(/\/$/, "");
|
|
880
|
+
const SITE_URL = "http://localhost:3000";
|
|
883
881
|
|
|
884
882
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
885
883
|
server: {
|
|
@@ -879,9 +879,7 @@ Luego, crea una ruta `src/routes/sitemap[.]xml.ts` que use la función `generate
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -879,9 +879,7 @@ Ensuite, créez une route `src/routes/sitemap[.]xml.ts` qui utilise la fonction
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -879,9 +879,7 @@ Quindi, crea un percorso `src/routes/sitemap[.]xml.ts` che utilizzi la funzione
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -881,9 +881,7 @@ export default defineConfig({
|
|
|
881
881
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
882
882
|
import { generateSitemap } from "intlayer";
|
|
883
883
|
|
|
884
|
-
const SITE_URL =
|
|
885
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
886
|
-
).replace(/\/$/, "");
|
|
884
|
+
const SITE_URL = "http://localhost:3000";
|
|
887
885
|
|
|
888
886
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
889
887
|
server: {
|
|
@@ -879,9 +879,7 @@ export default defineConfig({
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -879,9 +879,7 @@ Em seguida, crie uma rota `src/routes/sitemap[.]xml.ts` que use a função `gene
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -879,9 +879,7 @@ export default defineConfig({
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
|
@@ -879,9 +879,7 @@ export default defineConfig({
|
|
|
879
879
|
import { createFileRoute } from "@tanstack/solid-router";
|
|
880
880
|
import { generateSitemap } from "intlayer";
|
|
881
881
|
|
|
882
|
-
const SITE_URL =
|
|
883
|
-
import.meta.env.VITE_SITE_URL ?? "http://localhost:3000"
|
|
884
|
-
).replace(/\/$/, "");
|
|
882
|
+
const SITE_URL = "http://localhost:3000";
|
|
885
883
|
|
|
886
884
|
export const Route = createFileRoute("/sitemap.xml")({
|
|
887
885
|
server: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/docs",
|
|
3
|
-
"version": "8.6.
|
|
3
|
+
"version": "8.6.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Intlayer documentation",
|
|
6
6
|
"keywords": [
|
|
@@ -72,13 +72,13 @@
|
|
|
72
72
|
"watch": "webpack --config ./webpack.config.ts --watch"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@intlayer/config": "8.6.
|
|
76
|
-
"@intlayer/core": "8.6.
|
|
77
|
-
"@intlayer/types": "8.6.
|
|
75
|
+
"@intlayer/config": "8.6.1",
|
|
76
|
+
"@intlayer/core": "8.6.1",
|
|
77
|
+
"@intlayer/types": "8.6.1"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@intlayer/api": "8.6.
|
|
81
|
-
"@intlayer/cli": "8.6.
|
|
80
|
+
"@intlayer/api": "8.6.1",
|
|
81
|
+
"@intlayer/cli": "8.6.1",
|
|
82
82
|
"@types/node": "25.5.0",
|
|
83
83
|
"@utils/ts-config": "1.0.4",
|
|
84
84
|
"@utils/ts-config-types": "1.0.4",
|