Guest User

Untitled

a guest
Jan 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. if (staticBuild) {
  2. plugins.push(StaticSiteGenerator);
  3. } else {
  4. plugins.push(
  5. new HtmlWebpackPlugin({
  6. template: 'src/views/layouts/foo.jsx',
  7. inject: false
  8. })
  9. )
  10. }
  11.  
  12. // Or...
  13.  
  14. plugins.push(
  15. staticBuild ? StaticSiteGenerator : new HtmlWebpackPlugin({
  16. template: 'src/views/layouts/foo.jsx',
  17. inject: false
  18. })
  19. )
Add Comment
Please, Sign In to add comment