Skip to content
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

upgrade to 3.6 and enable experimental_faster #75

Merged
merged 3 commits into from
Dec 25, 2024
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
2 changes: 2 additions & 0 deletions website/blog/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ Oreo:
url: https://github.com/Oreoxmt
email: [email protected]
image_url: https://github.com/Oreoxmt.png
socials:
github: Oreoxmt
3 changes: 3 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import {themes as prismThemes} from 'prism-react-renderer';

/** @type {import('@docusaurus/types').Config} */
export default {
future: {
experimental_faster: true,
},
title: 'On my way to Oodi',
tagline: '"Siempre imaginé que el paraíso sería algún tipo de biblioteca"',
url: 'https://oreo.life',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ I use [webpack](https://webpack.js.org) to bundle some JS scripts today, see [op
- To use [JS scripts](https://github.com/Oreoxmt/openapi-scripts/tree/main/src), I build a Docker image [`ghcr.io/oreoxmt/openapi-scripts`](https://github.com/Oreoxmt/openapi-scripts/pkgs/container/openapi-scripts).
- The Docker image is under rapid development, and it takes a long time to pull the latest image due to 3901 node modules.

<!-- truncate -->

## Step 1. Install `webpack-cli`

To install `webpack-cli`, run the following command. For more information about the directory structure, refer to [Basic setup](https://webpack.js.org/guides/getting-started/#basic-setup).
Expand Down
9 changes: 5 additions & 4 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
"crawl": "./trigger_algolia_crawler.sh"
},
"dependencies": {
"@docusaurus/core": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@docusaurus/core": "^3.6.3",
"@docusaurus/faster": "^3.6.3",
"@docusaurus/preset-classic": "^3.6.3",
"@mdx-js/react": "^3.0.0",
"clsx": "^1.2.1",
"prism-react-renderer": "^2.1.0",
Expand All @@ -26,8 +27,8 @@
"react-player": "^2.16.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.4.0",
"@docusaurus/tsconfig": "^3.4.0",
"@docusaurus/module-type-aliases": "^3.6.3",
"@docusaurus/tsconfig": "^3.6.3",
"typescript": "~5.2.2"
},
"browserslist": {
Expand Down
Loading
Loading