Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit a01682c

Browse files
author
Julien Veyssier
authored
Merge pull request #6 from nextcloud/bugfix/noid/size
Add partial imports to externals
2 parents c7dc9aa + 5fccf95 commit a01682c

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

rollup.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@ export default {
1717
external: id => {
1818
const externals = [
1919
'vue',
20-
'@nextcloud/vue'
20+
'@nextcloud/vue',
21+
'v-tooltip',
22+
'popper.js',
2123
]
2224
if (externals.includes(id)) {
2325
return true
2426
}
27+
if (id.startsWith('@nextcloud/vue/')) {
28+
return true
29+
}
2530
return false
2631
},
2732
output: {

0 commit comments

Comments
 (0)