Skip to content

Instantly share code, notes, and snippets.

@davecra
Created May 29, 2020 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davecra/41eb130a808e1f7553057a8b53f2d031 to your computer and use it in GitHub Desktop.
Save davecra/41eb130a808e1f7553057a8b53f2d031 to your computer and use it in GitHub Desktop.
Plugins for all OfficeJS Parts
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