UNPKG

html-webpack-plugin

Version:

Simplifies creation of HTML files to serve your webpack bundles

13 lines (12 loc) 354 B
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> <title>{%=o.htmlWebpackPlugin.options.title || 'Webpack App'%}</title> </head> <body> {% for (var chunk in o.htmlWebpackPlugin.assets) { %} <script src="{%=o.htmlWebpackPlugin.assets[chunk]%}"></script> {% } %} </body> </html>