diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..8a5f8fc --- /dev/null +++ b/turbo.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://turbo.build/schema.json", + "pipeline": { + "build": { + "outputs": [".next/**", "!.next/cache/**"], + "env": ["NODE_ENV", "NEXT_PUBLIC_*"] + }, + "dev": { + "cache": false, + "persistent": true + }, + "lint": { + "outputs": [] + }, + "type-check": { + "outputs": [] + } + }, + "globalEnv": ["NODE_ENV"], + "globalPassThroughEnv": [ + "NEXT_TELEMETRY_DISABLED", + "TURBOPACK_TELEMETRY_DISABLED", + "NODE_OPTIONS" + ] +}