1

node パッケージを使用してアプリケーションを実行しようとしていlite-serverますが、親ディレクトリからスクリプトをロードできません。

将来、別index.html/srcファイルを/dist. それらは変更されないため、ルートディレクトリにとどまる必要があります/node_modulessystemjs.config.js

ファイル構造:

ファイル構造

src/index.html:_

<html>
    <head>
        <base href="/">
        <title>task manager</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="styles.css">
        <!-- 1. Load libraries -->
        <!-- Polyfill(s) for older browsers -->
        <script src="../node_modules/core-js/client/shim.min.js"></script>
        <script src="../node_modules/zone.js/dist/zone.js"></script>
        <script src="../node_modules/reflect-metadata/Reflect.js"></script>
        <script src="../node_modules/systemjs/dist/system.src.js"></script>
        <!-- 2. Configure SystemJS -->
        <script src="../systemjs.config.js"></script>
        <script>
            System.import('app').catch(function(err){ console.error(err); });
        </script>
    </head>
    <!-- 3. Display the application -->
    <body>
        <my-app>Loading...</my-app>
    </body>
</html>

ディレクトリ内でlite-serverを実行しています/src

/src ディレクトリ内で lite-server を実行する場合

ノード モジュールは存在します。必要なファイルを子ディレクトリ自体に移動すると/src、サーバーは 404 なしで正常に動作します。これは、lite-server または systemjs の設定に問題がありますか?

4

1 に答える 1