Skip to content

Language selector #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 42 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f5cdd43
Update prod branch from develop (#88)
Turupawn Sep 18, 2023
d7c9a68
feat: add technology/security section (#100)
dghelm Oct 17, 2023
5ddad66
Developer guides: Mainnet related updates (#102)
Turupawn Oct 17, 2023
b9a8093
update for mainnet content (#104)
dghelm Oct 17, 2023
28480c0
fixed foundry verification (#103)
Turupawn Oct 17, 2023
11aae32
Merge branch 'prod' into develop
dghelm Oct 17, 2023
56b2085
Add bug bounty (#106)
zzq0826 Oct 17, 2023
95d8d3e
chore: replace contract addresses with explorer URLs (#110)
roynalnaruto Oct 20, 2023
c4e93dc
Fix typo in overview.md (#111)
vacekj Oct 20, 2023
ce6a44a
Update faucet.mdx (#99)
0xCryptic1 Oct 20, 2023
c014299
Small typos in documentation (#97)
Nexus7 Oct 20, 2023
9b3a138
Spanish catchup (#112)
Turupawn Oct 26, 2023
f2ad82d
Support Fragment in MDX files (#113)
zzq0826 Oct 31, 2023
e0b08d1
fix broken link (#120)
isabellewei Nov 15, 2023
a2fbe8c
Update contract verification page for etherscan and mainnet (#123)
isabellewei Nov 17, 2023
d32c402
Fix typo estimating-gas-and-tx-fees.mdx (#125)
AnnabelDuska Nov 21, 2023
5d95ad6
fix: text overflow on seach modal
Holybasil Nov 24, 2023
d36cad2
Merge pull request #4 from scroll-tech/develop
Turupawn Dec 1, 2023
b5436a8
Added EAS scroll sepolia contracts to the docs
Turupawn Dec 1, 2023
28d8026
Added EAS scroll sepolia contracts to the docs (#138)
Turupawn Dec 1, 2023
72b0128
update: add Trail of Bits links for zkEVM circuits (#136)
dghelm Dec 1, 2023
2865095
removed EVM target version section from the dev docs
Turupawn Dec 4, 2023
4b43295
Merge pull request #131 from scroll-tech/fix-text-overflow
dghelm Dec 4, 2023
b01a9d7
Merge pull request #141 from Turupawn/remove-push
dghelm Dec 4, 2023
e05e481
fix: home page
Holybasil Nov 21, 2023
0ef7cd9
fix: home search
Holybasil Nov 21, 2023
93168fd
fix: toggle theme
Holybasil Nov 22, 2023
6a84859
fix: search modal&&menu list on mobile
Holybasil Nov 23, 2023
4474600
fix: positon on mobile
Holybasil Nov 23, 2023
edd6079
fix: Feedback redesign
Holybasil Nov 27, 2023
709ec20
fix: link style
Holybasil Nov 28, 2023
bd93bbf
Add in doc sepolia faucet scroll.faucetme.pro
icodragon Dec 6, 2023
f1686f8
added eas mainnet contracts
Turupawn Dec 7, 2023
e13e264
Merge pull request #143 from Turupawn/quick-additions
dghelm Dec 8, 2023
4d02e57
Merge pull request #142 from icodragon/faucetme-doc
isabellewei Dec 11, 2023
b2124ca
Update intro-to-zkevm.md (#129)
0xbasar Dec 12, 2023
6815706
Merge pull request #127 from scroll-tech/dark-mode
dghelm Dec 12, 2023
50ce2a3
fix: several typos in the documentation (#140)
tudorpintea999 Dec 13, 2023
6d66372
fix address of L1ScrollMessenger and gasLimit for L1->L2 bridging (#145)
zimpha Dec 13, 2023
a41818c
revert address change in #145 (#147)
zimpha Dec 18, 2023
9264ecf
Update language picker
zzq0826 Nov 23, 2023
e4b9f05
Add homepage for Español
zzq0826 Dec 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion astro-i18next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
export default {
defaultLocale: "en",
showDefaultLocale: true,
locales: ["en", "zh", "es"],
locales: ["en", "es"],
load: ["server", "client"],
}
5 changes: 5 additions & 0 deletions astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineConfig } from "astro/config"
import preact from "@astrojs/preact"
import react from "@astrojs/react"
import svgr from "vite-plugin-svgr"
import astroI18next from "astro-i18next"
import { astroCallouts, asideAutoImport } from "./integrations/astro-callouts"
import { solidityRemixCode, codeSampleAutoImport } from "./integrations/solidity-remix"
Expand Down Expand Up @@ -32,6 +33,7 @@ export default defineConfig({
preact({
compat: true,
}),

sitemap({
changefreq: "daily",
}),
Expand All @@ -47,6 +49,9 @@ export default defineConfig({
}),
astroI18next(),
],
vite: {
plugins: [svgr()],
},
markdown: {
drafts: true,
remarkPlugins: [remarkMath, remarkGfm],
Expand Down
2 changes: 1 addition & 1 deletion integrations/utils/makeComponentNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function makeComponentNode(
type: "mdxJsxFlowElement",
name,
attributes: Object.entries(attributes)
// Filter out non-truthy attributes to avoid empty attrs being parsed as `true`.
// Filter out non-truthy attributes to avoid empty attributes being parsed as `true`.
.filter(([_k, v]) => v !== false && Boolean(v))
.map(([name, value]) => ({
type: "mdxJsxAttribute",
Expand Down
Loading