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
6 changes: 3 additions & 3 deletions redirects-old-site.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const redirectsOldSite = [
},
{
source: "/tutorial/react-components-to-gutenberg-blocks",
destination: "/docs/explanation/react-components-to-blocks/",
destination: "/docs/how-to/custom-blocks/",
permanent: true,
},
{
Expand Down Expand Up @@ -46,7 +46,7 @@ const redirectsOldSite = [
},
{
source: "/guide/how-to-use-apollo-in-faust",
destination: "/docs/how-to/use-wpgraphql-smart-cache/",
destination: "/docs/how-to/query-data-in-the-browser/",
permanent: true,
},
{
Expand Down Expand Up @@ -308,7 +308,7 @@ const redirectsOldSite = [
},
{
source: "/guide/how-to-use-the-faust-example-project",
destination: "/docs/",
destination: "/docs/tutorial/learn-faust/",
permanent: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/explanation/deploy-your-app/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Faust.js uses the `package.json` [engines field](https://docs.npmjs.com/cli/v9/c

## Building Your App

Since Faust.js is built on top of Next.js, it shares the same build process. For details on how Next.js generates optimized production builds, refer to the [Next.js Build API](<(https://nextjs.org/docs/pages/building-your-application/deploying#nextjs-build-api)>) documentation. Additionally, you can explore the Headless Platform [framework guide](https://developers.wpengine.com/docs/atlas/framework-guides/next-js/next/) for Next.js apps.
Since Faust.js is built on top of Next.js, it shares the same build process. For details on how Next.js generates optimized production builds, refer to the [Next.js Build API](https://nextjs.org/docs/pages/building-your-application/deploying#nextjs-build-api) documentation. Additionally, you can explore the Headless Platform [framework guide](https://developers.wpengine.com/docs/atlas/framework-guides/next-js/next/) for Next.js apps.

## Deploying to WP Engine's Headless Platform

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/how-to/rendering-blocks/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Activate the plugin on the WordPress plugins page.
The `@faust/blocks` package contains a small reference list of core blocks that you can use in your site.

> [!TIP]
> These blocks are provided as a quick start option and reference. Blocks can be [overridden](/docs/how-to/override-blocks/) and [custom blocks](/docs/how-to/custom-blocks/) added to fit your site's needs.
> These blocks are provided as a quick start option and reference. Blocks can be [overridden](/docs/how-to/custom-blocks/) and [custom blocks](/docs/how-to/custom-blocks/) added to fit your site's needs.

### A. Install the @faust/blocks package

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/reference/blockset/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ wp-blocks
```

> [!NOTE]
> See our [React Components to Blocks](/docs/how-to/react-components-to-blocks/) how-to guide for more information on how to create React components that can be used as blocks in the Block Editor.
> See our [React Components to Blocks](/docs/how-to/custom-blocks/) how-to guide for more information on how to create React components that can be used as blocks in the Block Editor.

## `blockset` Command Usage

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/tutorial/learn-faust/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ Reload the http://localhost:3000/blog/hello-world/ page in your frontend app and
More information about using Faust to render blocks, override WordPress core blocks with your own implementation, and even add support for custom blocks can be found in these how-to guides:

- [Rendering Blocks](/docs/how-to/rendering-blocks/)
- [Override Blocks](/docs/how-to/override-blocks/)
- [Override Blocks](/docs/how-to/custom-blocks/)
- [Custom Blocks](/docs/how-to/custom-blocks/)

## Next steps
Expand Down