This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Description
Hey,
I am using:
app.use(
sass({
src: path.join(__dirname, '/common/sass'),
dest: path.join(__dirname, '../wwwroot/stylesheets'),
prefix: '/stylesheets',
})
)
but it will only pick up the sass file if I call it "style.scss" instead of "bootstrap.scss" for example. Is there a way to specify the source filename? I'd like to keep it named bootstrap.scss instead of style.scss.
Same question applies to the dest filename, can I give it a custom name which differs from the source css filename?