Update rollup.config.js

pull/3892/head
mertsincan 2023-04-19 10:23:17 +03:00
parent 45adeb9b93
commit baa8121447
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ function addIcon() {
.forEach(({ name: folderName }) => { .forEach(({ name: folderName }) => {
fs.readdirSync(path.resolve(__dirname, './components/lib/icons/' + folderName)).forEach((file) => { fs.readdirSync(path.resolve(__dirname, './components/lib/icons/' + folderName)).forEach((file) => {
if (/\.vue$/.test(file)) { if (/\.vue$/.test(file)) {
addEntry('icon/' + folderName, 'index.vue', 'index'); addEntry('icons/' + folderName, 'index.vue', 'index');
} }
}); });
}); });