Back to Rolldown

Checks Filename Conflict

packages/rolldown/src/options/docs/checks-filename-conflict.md

1.1.0261 B
Original Source

For example, this warning happens with the following config:

js
export default {
  input: ['src/entry1.js', 'src/entry2.js'],
  output: {
    // Both entries will try to use the same filename
    entryFileNames: 'bundle.js',
  },
};