Как сделать так, чтобы страничка находила свою дополнительную часть? В вебпаке использую HTMLWebpackPlugin.
new HtmlWebpackPlugin({
inject: false,
template: path.resolve(__dirname, `../examples/html/pages/${file}`),
filename: file
})
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Examples</title>
<script src="bundle.js"></script>
</head>
<body>
<link rel="import" href="../partials/header.html">
</body>
</html>