You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to config bundle options so I can omit from bundling files in Frontend/_assets/Content folder. I've tried inserting "!FrontEnd/_assets/Content/**/*.{css,less}" in both bundle configs and bundle options, but it seems to not work.
I am trying to config bundle options so I can omit from bundling files in Frontend/_assets/Content folder. I've tried inserting "!FrontEnd/_assets/Content/**/*.{css,less}" in both bundle configs and bundle options, but it seems to not work.
var bundleOptions = { order: { styles: [ ... "!FrontEnd/_assets/Content/**/*.{css,less}", "Frontend/**/*.{css,less}" ] } };
module.exports = { bundle: { ... app: { styles: ["!FrontEnd/_assets/Content/**/*.{css,less}" "Frontend/**/*.{css,less}"], options: bundleOptions } }
The text was updated successfully, but these errors were encountered: