Оптимизатор RequireJs игнорирует плагин
Я хотел бы игнорировать использование плагина require js при использовании оптимизатора
define(["css!styles.css"])
Это всегда дает мне эту ошибкуCannot read property 'normalize' of undefined
,
Я установил эту опцию на оптимизатор требований
{
paths : {
'css' : 'empty:'
}
}
Но это продолжает давать мне ошибку.
1 ответ
Я не знаю, если это то, что вы хотите, но вы могли бы заглушить плагин CSS.
//Specify modules to stub out in the optimized file. The optimizer will
//use the source version of these modules for dependency tracing and for
//plugin use, but when writing the text into an optimized bundle, these
//modules will get the following text instead:
//If the module is used as a plugin:
// define({load: function(id){throw new Error("Dynamic load not allowed: " + id);}});
//If just a plain module:
// define({});
//This is useful particularly for plugins that inline all their resources
//and use the default module resolution behavior (do *not* implement the
//normalize() method). In those cases, an AMD loader just needs to know
//that the module has a definition. These small stubs can be used instead of
//including the full source for a plugin.
stubModules: ['text', 'bar'],
Итак, в вашем случае:
stubModules: ['css']
Подробнее см. В разделе Параметры конфигурации Requirejs Optimizer