diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..20fb13d --- /dev/null +++ b/turbo.json @@ -0,0 +1,30 @@ +{ + "$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" + ] +} \ No newline at end of file