You've already forked AstralRinth
forked from didirus/AstralRinth
* fix: More monorepo migration fixes * fix: Corrected icon sizes & other fixes * fix(theseus): Change color of mod installation button * fix(theseus): More Turborepo fixes * chore: Prettier --------- Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
32 lines
624 B
JSON
32 lines
624 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".nuxt/**", "dist/**", ".output/**", "target/**"],
|
|
"env": [
|
|
"NODE_ENV",
|
|
"SITE_URL",
|
|
"BASE_URL",
|
|
"FLAG_OVERRIDES",
|
|
"BROWSER_BASE_URL",
|
|
"RATE_LIMIT_IGNORE_KEY",
|
|
"VERCEL_*",
|
|
"CF_PAGES_*",
|
|
"HEROKU_APP_NAME"
|
|
]
|
|
},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"env": [
|
|
"*"
|
|
]
|
|
},
|
|
"test": {}
|
|
},
|
|
"ui": "tui"
|
|
}
|