Skip to content

Commit

Permalink
fix examples build
Browse files Browse the repository at this point in the history
  • Loading branch information
slimbuck committed Dec 4, 2024
1 parent 74ccd44 commit 260dd02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const getEngineTargets = () => {
...buildTarget({
moduleFormat: 'esm',
buildType: 'release',
bundleState: 'unbundled',
bundleState: 'bundled',
input: '../src/index.js',
dir: 'dist/iframe'
})
Expand All @@ -77,7 +77,7 @@ const getEngineTargets = () => {
...buildTarget({
moduleFormat: 'esm',
buildType: 'debug',
bundleState: 'unbundled',
bundleState: 'bundled',
input: '../src/index.js',
dir: 'dist/iframe'
})
Expand All @@ -89,7 +89,7 @@ const getEngineTargets = () => {
...buildTarget({
moduleFormat: 'esm',
buildType: 'profiler',
bundleState: 'unbundled',
bundleState: 'bundled',
input: '../src/index.js',
dir: 'dist/iframe'
})
Expand Down

0 comments on commit 260dd02

Please sign in to comment.