gpt4 book ai didi

javascript - webpack开发服务器不是在内存中生成bundle.js吗?

转载 作者:太空宇宙 更新时间:2023-11-04 16:13:02 26 4
gpt4 key购买 nike

我的文件结构如下:

Project
|
+-- src/
| |
| +-- index.js
|
+-- index.html
|
+-- webpack.config.js

src/index.js:

document.write("Hello World.");

index.html:

 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>webpack learning</title>

<script src="builds/bundle.js"></script>
</head>
<body>

</body>
</html>

webpack.config.js:

var path = require('path');

module.exports = {
entry: './src',
output: {
path: path.join(__dirname, 'builds'),
filename: 'bundle.js',
}
};

当我在项目目录中运行 webpack-dev-server 时,webpack-dev-server 正常启动并打印“webpack:bundle is now VALID”。但是,当我启动浏览器并转到 localhost:8080 时,控制台提示找不到 bundle.js。事实上,不存在名为“build”且其中包含bundle.js 的文件夹。但是,webpack-dev-server 不是在内存中生成bundle.js 吗?涉及任何配置问题吗?

最佳答案

这将有助于查看您正在运行的命令,但是如果我必须猜测这个命令,我会说您可能没有设置 --content-base https://webpack.js.org/configuration/dev-server/#devserver-contentbase

关于javascript - webpack开发服务器不是在内存中生成bundle.js吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41309796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com