When I tried named inputs like it is documented here: https://rollupjs.org/configuration-options/#input ```javascript // vite.config.js export default defineConfig(() => { // ... build: { rollupOptions: { input: { a: 'src/main-a.js', 'b/index': 'src/main-b.js' }, output: { // ... entryFileNames: 'entry-[name]' } } }); ``` I got an error because vituum won't let you do that. As I need to generate a specific file structure, this feature is necessary for me. If this feature is used the globbing should be disabled and handled by myself like here: ```javascript { // ... input: { a: 'src/main-a.js', 'b/index': 'src/main-b.js', ...Object.fromEntries( globSync('src/pages/**/*.njk').map(file => [ path.relative('src/pages', removeExtname(file)), fileURLToPath(new URL(file, import.meta.url)) ]) ) } } ```