diff --git a/src/pages/docs/how-to/basic-setup/index.mdx b/src/pages/docs/how-to/basic-setup/index.mdx index d67a78d3..cbb662fc 100644 --- a/src/pages/docs/how-to/basic-setup/index.mdx +++ b/src/pages/docs/how-to/basic-setup/index.mdx @@ -50,12 +50,16 @@ Create a `faust.config` file in the root of your project with this code: ```js title="faust.config.js" import { setConfig } from "@faustwp/core"; +import templates from "./wp-templates"; +import possibleTypes from "./possibleTypes.json"; /** * @type {import('@faustwp/core').FaustConfig} **/ export default setConfig({ + templates, plugins: [], + possibleTypes, }); ```