私は ReactJS と Webpack が初めてで、react-boilerplate を使用しており、独自の外部ライブラリ セットを持つボイラープレートにテンプレートを追加しようとしています。
私が直面している問題は、これらの外部ライブラリにリンクするタグを含めようとするたびに、webpack がこれらのファイルを再コンパイルしてコンテンツを変更することです。これはエラーをスローしています。
<!doctype html>
<html lang="en">
<head>
<!-- The first thing in any HTML file should be the charset -->
<meta charset="utf-8">
<!-- Make the page mobile compatible -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Allow installing the app to the homescreen -->
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<title>Avalon</title>
<script type="text/javascript" src="resources/scripts/core/libraries/jquery.min.js"></script>
</head>
<body>
<!-- The app hooks into this div -->
<div id="app"></div>
</body>
</html>
実行時にjquery.min.jsのソースを確認すると、内容が変更されています。
構成で何を変更すればよいのか、または何が間違っているのかわかりません。