diff --git a/examples/retail-store/turbo.json b/examples/retail-store/turbo.json new file mode 100644 index 000000000..de14b69e7 --- /dev/null +++ b/examples/retail-store/turbo.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://turbo.build/schema.json", + "extends": ["//"], + "tasks": { + "build": { + "inputs": [ + "src/**", + "app/**", + "public/**", + "middleware.ts", + "next.config.js", + "postcss.config.mjs", + "package.json", + "tsconfig.json" + ], + "outputs": [".next/**", "!.next/cache/**"] + } + } +}