无法从webpack构建中找到文件

时间:2017-11-06 20:38:59

标签: javascript webpack visual-studio-code

我是webpack的新手,目前正在尝试进行一些演示。但是,似乎我的服务器找不到从index.html文件引用的文件。

我正在使用http-server,这是index.html页面:

<html>
    <head>
        <title>Page title</title>
    </head>
    <body>
        <div id="app"></div>

        <script src="../build/js/bundle.js"></script>
    </body>
</html>

...和我的webpack.config.js文件:

var path = require("path");

module.exports = {
    context: path.resolve("src"),
    entry: "./index.js",
    output: {
        path: path.resolve("build/js/"),
        filename: "bundle.js"
    },
    module: {
        loaders: [
            {
                test: /\.js$/,
                exclude: /node_modules/,
                loader: "babel-loader"
            }
        ]
    },
    resolve: {
        extensions: [".js", ".es6"]
    }
};

目前我正在尝试设置以下文件结构:

构建

  • JS

    • bundle.js

SRC

  • JS

    • App.js
  • index.js

公开

  • 的index.html

运行webpack并启动服务器后,我收到404错误,指出无法找到bundle.js

0 个答案:

没有答案