Skip to content

Commit

Permalink
build(plugin-icon): fix rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Jan 15, 2025
1 parent 8384ed0 commit e8cc785
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/features/plugin-icon/rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { rollupBundle } from '../../../scripts/rollup.js'

export default [...rollupBundle('node/index'), ...rollupBundle('client/index')]
export default [
...rollupBundle('node/index', { external: ['@mdit/plugin-icon'] }),
...rollupBundle('client/index'),
]

0 comments on commit e8cc785

Please sign in to comment.