Merge pull request #1043 from TriliumNext/fix_webpack-share-entry

fix(webpack): add missing share.js entry point
pull/1046/head
Elian Doran 2025-01-25 23:42:41 +07:00 committed by GitHub
commit faf14e1b14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

@ -9,7 +9,8 @@ const config: Configuration = {
entry: {
setup: "./src/public/app/setup.js",
mobile: "./src/public/app/mobile.js",
desktop: "./src/public/app/desktop.js"
desktop: "./src/public/app/desktop.js",
share: "./src/public/app/share.js"
},
output: {
publicPath: `${assetPath}/app-dist/`,