Skip to content

Commit

Permalink
fix: set rollup config flag
Browse files Browse the repository at this point in the history
i guess node-fetch@3 wants to split the bundle so we need to set this now
  • Loading branch information
kanadgupta committed Sep 13, 2023
1 parent 0b0fed0 commit f237245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { defineConfig } from 'rollup';

export default defineConfig({
input: 'bin/rdme.js',
output: { file: 'rdme-rollup.cjs', format: 'cjs' },
output: { file: 'rdme-rollup.cjs', format: 'cjs', inlineDynamicImports: true },
plugins: [
commonjs(),
json(),
Expand Down

0 comments on commit f237245

Please sign in to comment.