This commit is contained in:
SheetJS 2022-08-28 14:26:33 -04:00
parent 3beed86053
commit 6e8398426f
3 changed files with 10 additions and 3 deletions

@ -1579,7 +1579,7 @@ async function importFile(evt) {
#### Writing data
`@capacitor/fileysstem` can write Base64 strings:
`@capacitor/filesystem` can write Base64 strings:
```html
<script>
@ -1701,4 +1701,4 @@ npm run build; npx cap sync; npx cap run ios
There are 3 steps: build the Svelte app, sync with CapacitorJS, and run sim.
This sequence must be run every time to ensure changes are propagated.
</details>
</details>

@ -158,7 +158,13 @@ const config = {
}
],
plugins: [
require.resolve("@cmfcmf/docusaurus-search-local")
require.resolve("@cmfcmf/docusaurus-search-local"),
[ '@docusaurus/plugin-client-redirects', {
redirects: [
{ from: '/docs/example', to: '/docs/getting-started/example' },
{ from: '/docs/installation', to: '/docs/getting-started/' },
]
}]
]
};

@ -16,6 +16,7 @@
"dependencies": {
"@cmfcmf/docusaurus-search-local": "0.11.0",
"@docusaurus/core": "2.0.1",
"@docusaurus/plugin-client-redirects": "2.0.1",
"@docusaurus/preset-classic": "2.0.1",
"@docusaurus/theme-common": "2.0.1",
"@docusaurus/theme-live-codeblock": "2.0.1",