Skip to content

Commit 7d7c939

Browse files
authored
Merge pull request #302 from wpengine/bug-fix-paths-docs-getting-started
Bug: Added small fix for paths for getting started
2 parents 030ee8f + bfb00b5 commit 7d7c939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/docs/how-to/basic-setup/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Create a `faust.config.js` file in the root of your project with this code:
5656

5757
```js title="faust.config.js"
5858
import { setConfig } from "@faustwp/core";
59-
import templates from "./wp-templates";
59+
import templates from "./src/wp-templates";
6060
import possibleTypes from "./possibleTypes.json";
6161

6262
/**
@@ -89,7 +89,7 @@ Once the API router is set up, head to `src/pages/_app.js`. Add the `import` sta
8989
```js title="src/pages/_app.js"
9090
import { useRouter } from "next/router";
9191
import { FaustProvider } from "@faustwp/core";
92-
import "../faust.config";
92+
import "../../faust.config";
9393

9494
export default function App({ Component, pageProps }) {
9595
const router = useRouter();

0 commit comments

Comments
 (0)