| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | | <!DOCTYPE html> |  | <html lang="en"> |  | <head> |  |   <meta charset="UTF-8"> |  | </head> |  | <body> |  | <h1>Sprite image embedded in entry.html (which processed by html-loader and extracted by extract-text-webpack-plugin)</h1> |  | <img src="../assets/twitter.svg" alt=""> |  |   |  | <h1>Sprite image embedded as background-image in main.css (which processed by css-loader and extracted by extract-text-webpack-plugin)</h1> |  | <link rel="stylesheet" href="main.css"> |  | <div class="twitter-logo"></div> |  | </body> |  | </html> | 
 |