Files
web/apps/scandic-web/turbo.json
Joakim Jäderberg 48324ef935 Merged in feature/copy-static-files-via-build-scripts (pull request #2798)
SW-3467 Copy static files via build scripts

* add file copy script and add all fonts to design-system

* add file copy script and add all fonts to design-system

* add file copy script and add all fonts to design-system

* remove fonts that will be copied via build scripts

* wip

* update paths to shared files

* update material-symbol script

* merge

* fix missing shared segment for path in fonts.css


Approved-by: Linus Flood
2025-09-16 10:59:33 +00:00

19 lines
419 B
JSON

{
"extends": ["//"],
"tasks": {
"lint": { "dependsOn": [] },
"build": { "dependsOn": ["include:shared"] },
"dev": { "dependsOn": ["include:shared"] },
"test": {
"dependsOn": [
"@scandic-hotels/trpc#test",
"@scandic-hotels/common#test",
"@scandic-hotels/booking-flow#test"
]
},
"include:shared": {
"outputs": ["public/_static/shared/**"]
}
}
}