Created
May 29, 2020 20:12
-
-
Save davecra/41eb130a808e1f7553057a8b53f2d031 to your computer and use it in GitHub Desktop.
Plugins for all OfficeJS Parts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins: [ | |
new CleanWebpackPlugin(), | |
new HtmlWebpackPlugin({ | |
filename: "taskpane.html", | |
template: "./src/dialogs/taskpane.html", | |
chunks: ["polyfill", "common", "shared", "taskpane"] | |
}), | |
new HtmlWebpackPlugin({ | |
filename: "dialog.html", | |
template: "./src/dialogs/dialog.html", | |
chunks: ["polyfill", "common", "dialog"] | |
}), | |
new HtmlWebpackPlugin({ | |
filename: "commands.html", | |
template: "./src/commands/commands.html", | |
chunks: ["polyfill", "shared", "commands"] | |
}) | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment