-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Labels
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?