I would like to ignore the use of a require js plugin when I use the optimizer
define(["css!styles.css"])
This always gives me this error
Cannot read property 'normalize' of undefined
.
I've set this options to the require optimizer
{
paths : {
'css' : 'empty:'
}
}
But it keeps giving me the error.
I don't know if that is what you want, but you could stub out the css plugin.
So in your case:
More details, see Requirejs Optimizer Config options