Skip to content

Commit 7473eaa

Browse files
committed
chore: remove old internalization
1 parent fe87ff4 commit 7473eaa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2359
-2264
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"workbench.colorCustomizations": {
66
"statusBar.noFolderBackground": "#19A119",
77
"statussBar.prominentBackground": "#19A119"
8-
}
8+
},
9+
"typescript.tsdk": "node_modules/typescript/lib"
910
}

astro.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
transformerNotationWordHighlight,
88
} from "@shikijs/transformers";
99
import astroMetaTags from "astro-meta-tags";
10+
import pagefind from "astro-pagefind";
1011
import robotsTxt from "astro-robots-txt";
1112
import { defineConfig } from "astro/config";
1213
import rehypeKatex from "rehype-katex";
@@ -23,12 +24,21 @@ export default defineConfig({
2324
astroMetaTags(),
2425
robotsTxt(),
2526
sitemap(),
27+
pagefind(),
2628
],
29+
output: "static",
2730
contentLayer: true,
2831
srcDir: "src",
2932
server: {
3033
port: 3200,
3134
},
35+
i18n: {
36+
locales: ["es", "en"],
37+
defaultLocale: "en",
38+
routing: {
39+
prefixDefaultLocale: false,
40+
},
41+
},
3242
redirects: {
3343
"/docs": "/guides/install",
3444
"/doc": "/docs",

doc.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

guides/en/getting_started/sprites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ When you have a spritesheet, you probably have animations. For these cases, the
2828
best option for you is to use the `loadSprite()`'s third argument, where you can
2929
set options related to animations.
3030

31-
![assets eggs](assets/eggs.png)
31+
![assets eggs](./assets/eggs.png)
3232

3333
```js
3434
loadSprite("player", "sprites/player.png", {

guides/en/integrations/0_multiplayer_with_colyseus.mdx

Lines changed: 746 additions & 270 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@astrojs/mdx": "^4.2.5",
2727
"@astrojs/sitemap": "^3.3.1",
2828
"@astrojs/tailwind": "^6.0.2",
29-
"@builder.io/qwik": "1.7.2",
29+
"@builder.io/qwik": "1.13.0",
3030
"@fontsource-variable/fira-code": "^5.1.0",
3131
"@fontsource-variable/fredoka": "^5.1.0",
3232
"@fontsource-variable/outfit": "^5.1.0",
@@ -37,7 +37,7 @@
3737
"@kaplayjs/crew": "2.0.0-beta.5",
3838
"@lunariajs/core": "^0.1.1",
3939
"@nanostores/persistent": "^0.10.2",
40-
"@qwikdev/astro": "^0.6.3",
40+
"@qwikdev/astro": "^0.7.12",
4141
"@types/node": "^20.16.10",
4242
"astro": "^5.7.5",
4343
"astro-meta-tags": "^0.3.1",

0 commit comments

Comments
 (0)