What\'s mean \"!\" in require.js when I included module ? What\'s syntax ? I what includ dinamic stylesheet in my project and I found https://github.com/martinsb/require-cs
By default requirejs has support for downloading and loading javascript files only. Any other file which need to be downloaded and parsed accordingly is done by means of plugins. These plugins are separate javascript files which know how to download and parse the respected file.
To tell requirejs that any particular file need to be handled by separate plugin and not default loader. It's plugin is appended with !
between plugin name and file path.