diff --git a/netlify.toml b/netlify.toml index cede855..516bfac 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,8 +1,8 @@ [build] - public = "#" + public = "." functions = "netlify/functions" [[redirects]] from = "/api/*" to = "netlify/functions/:splat" - status = "200" \ No newline at end of file + status = "200" diff --git a/stackbit.config.ts b/stackbit.config.ts new file mode 100644 index 0000000..ccb9982 --- /dev/null +++ b/stackbit.config.ts @@ -0,0 +1,9 @@ +import { defineStackbitConfig } from '@stackbit/types'; + +export default defineStackbitConfig({ + "stackbitVersion": "~0.6.0", + "nodeVersion": "18", + "ssgName": "custom", + "contentSources": [], + "postInstallCommand": "npm i --no-save @stackbit/types" +}) \ No newline at end of file