ckeditor / ckeditor5

Powerful rich text editor framework with a modular architecture, modern integrations, and features like collaborative editing.
https://ckeditor.com/ckeditor-5
Other
8.7k stars 3.62k forks source link

Bundler-specific configurations in the Builder #16618

Open roomsalmon opened 1 week ago

roomsalmon commented 1 week ago

Reproduction steps

After builder it hasn't docs for setup webpack. That's code to avoid errors:

{ test: /\.css$/i, use: ["style-loader", { loader: "css-loader", options: { url: { filter: (url) => { if (/^data:(image|font)/i.test(url)) { return false; } return true; }, }, }, }], },

Please update your instructions for setup from builder.

Current behavior

No response

Expected behavior

No response

Definition of Done

Relevant debug data

No response

Other details

No response

User agent

Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Witoso commented 1 week ago

Hi! The Builder (and editor) works with multiple bundlers, and we would need to provide multiple different setups. For now, we assumed that as an integrator, you own the bundler config.

In the future we may, provide more specific instructions, so I will keep this open.