webpack-merge-and-include-globally
webpack-merge-and-include-globally copied to clipboard
Char with code 65279 added between files
I noticed that char with char code #65279 is added in the bundeled result. It seems like the char is added between files, and modifying the 'separator' parameter does not change this behaviour.
This is generally no problems, but i have some css-files starting with @font-face, which now the browser is unable to interpret.
I have 'webpack-merge-and-include-globally' configured like this:
new MergeIntoSingleFilePlugin({
files: {
"libs.bundle.css": [
'path/to/libs/*.css'
]
}
})