Skip to content

Commit

Permalink
fix: missing loaders for appengine deployment (#7560)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel-fenichel authored Sep 29, 2023
1 parent cf5d998 commit 971bc11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gulpfiles/appengine_tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function copyStaticSrc(done) {
* Prerequisite: clean, build.
*/
function copyBuilt(done) {
return gulp.src(['build/msg/*', 'dist/*_compressed.js*'], {base: '.'})
return gulp.src(['build/msg/*', 'dist/*_compressed.js*', 'build/*.loader.mjs'], {base: '.'})
.pipe(gulp.dest(demoStaticTmpDir));
}

Expand Down

0 comments on commit 971bc11

Please sign in to comment.