index.scss file.
You also need a script to compile the files, such as the following:
package.json
.upsun/config.yaml
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage dependencies for your hooks, such as compiling Sass files as part of your build.
index.scss file.
You also need a script to compile the files, such as the following:
{
"scripts": {
"build-css": "sass index.scss css/index.css"
},
}
applications:
myapp:
# Ensure sass is available globally
dependencies:
nodejs:
sass: "^1.47.0"
hooks:
# Run the script defined in package.json
build: |
npm run build-css
Was this page helpful?