css/、js/、fonts/、および images/ へのサブディレクトリを含む静的ディレクトリがあります。EpicEditor をダウンロードした後、epiceditor.min.js を js/ ディレクトリに配置し、HTML に次の行を追加しました。
<script type="text/javascript" src="/static/js/epiceditor.min.js"></script>
しかし、これはエラーになります:
GET http://0.0.0.0:6543/static/js/epiceditor.min.js/themes/base/epiceditor.css 404 (Not Found)
代わりに EpicEditor 用に別のディレクトリを使用する場合:
<script type="text/javascript" src="/epiceditor/js/epiceditor.min.js"></script>
これは私が得るエラーです:
GET http://0.0.0.0:6543/epiceditor/js/epiceditor.min.js 404 (Not Found)
正しい場所を指すように href を変更するにはどうすればよいですか? または、EpicEditor のさまざまなファイルをどこに置くべきですか?