Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 6 additions & 1 deletion docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ const config: Config = {

// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
future: {
v4: true, // Improve compatibility with the upcoming Docusaurus v4
// Improve compatibility with the upcoming Docusaurus v4.
// Since 3.10 this shorthand also turns on `v4.fasterByDefault`, which enables
// every `future.faster.*` option (Rspack, SWC, Lightning CSS). Those live in the
// separate `@docusaurus/faster` package, which is therefore a hard dependency
// of this site — without it the dev server and build fail at startup.
v4: true,
},

// Set the production url of your site here
Expand Down
17 changes: 9 additions & 8 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.9.1",
"@docusaurus/preset-classic": "3.9.1",
"@docusaurus/core": "3.10.2",
"@docusaurus/faster": "3.10.2",
"@docusaurus/preset-classic": "3.10.2",
"@mdx-js/react": "^3.0.0",
"@spatialdata/core": "workspace:*",
"@spatialdata/react": "workspace:*",
"@spatialdata/vis": "workspace:*",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "catalog:",
"react-dom": "catalog:",
"@spatialdata/core": "workspace:*",
"@spatialdata/react": "workspace:*",
"@spatialdata/vis": "workspace:*",
"zarrextra": "workspace:*"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.1",
"@docusaurus/tsconfig": "3.9.1",
"@docusaurus/types": "3.9.1",
"@docusaurus/module-type-aliases": "3.10.2",
"@docusaurus/tsconfig": "3.10.2",
"@docusaurus/types": "3.10.2",
"typescript": "catalog:"
},
"browserslist": {
Expand Down
Loading
Loading