我来自哪里
我已经使用 webpack 有一段时间了,但这是我第一次不为它修改入门工具包,而是尝试从头开始设置所有内容。
我关注了survivaljs.com 上的这篇不错的文章,并继承了其中描述的一些方法,将它们与我早期的一些设置结合起来(比如根据发送的生产变量设置不同的名称和路径)。
在讲座期间,我尝试尽可能多地运行“构建”和“启动”,以免被一些我无法追踪的意外行为所抓住。这工作得很好。
然后在某个时候,在摆弄关于从第三方框架中排除未使用的 css的章节时, 我不知何故破坏了我的开发服务器设置。("run build"
仍然有效!)
问题
我的热服务器定义在 192.168.1.2:3000(这正是我想要的)。当我webpack-dev-server
使用下面进一步显示的设置运行时,我在该位置收到404(无法获取 /)。现在我已经阅读了很多关于如何正确设置 webpack 开发服务器的内容,但我仍然没有得到正确的答案......(很可能并不孤单......)因为我仍然不完全理解如何路径工作。
这是我的理解(通用开发服务器设置):
(如果我在这方面错了,请帮助我)
- my 的输出路径
webpack.config.js
只会在运行开发服务器时在内存中提供,因此在物理上不可见(path: path.join(__dirname, 'devServerFolder'
例如,如果输出是,如果不是由我创建,我将永远不会在项目结构中的任何地方看到该文件夹) - 在我指向 with和with 的文件夹中需要一个
index.html
指向 my的静态文件(这可能是我需要在其中创建的文件夹;通常在网络上的大多数设置中,用于保存的文件夹相同)生产建立)bundle.js
publicPath
contentBase
devServerFolder
index.html
public
- 如果我使用
html-webpack-plugin
插件,它将自动为我生成该文件,而无需指向任何内容,因为 bundle.js 由插件写入其中
这些是真正困扰我理解的一些要点。我已经尝试了很多。的。不同。组合使用publicPath
和contentBase
设置没有运气来重新建立我的开发服务器(首先工作正常)。
请注意,我在代码或使用 编译我的构建时没有任何问题run build
,它工作正常,就像它应该的那样。
配置
文件夹结构
webpack.test
|
| - app // App folder
|
| - index.js // Entry point
| - greet.js // Hello World called by index.js
| - sass // Sass assets folder
| - pug // Pug (formerly jade) template and assets folder
| - node_modules
| - public // Production output folder
| - webpack-config-chunks // Split up webpack configs folder
| - .babelrc
| - package.json
| - webpack.config.js
Webpack.config.js
// Irrelevant parts omitted
const paths: {
app: path.join(__dirname, 'app'), // The obvious one
dev: path.join(__dirname, 'bin'),
/* As mentioned above, from my understanding,
the output path for the dev server doesn't really matter at all
when using html-webpack-plugin, am I wrong here? */
build: path.join(__dirname, 'public') // Another obvious one
...
};
...
entry: {
app: production ? paths.app : [
'webpack-dev-server/client?192.168.1.2:3000',
'webpack/hot/only-dev-server',
paths.app
]
/* I can modify the entry to just be paths.app for every case
but it won't change a thing regarding my problem. */
},
output: {
path: production ? paths.build : paths.dev,
publicPath: production ? '' : paths.dev + '/',
/* ^ This is where I've tried just '' or paths.app or paths.build
instead of paths.dev and delete publicPath all together. */
filename: production ? '[name].[chunkhash].js' : '[name].js',
chunkFilename: '[chunkhash].js'
},
devServer: {
contentBase: paths.dev,
/* ^ This = "webpack.test/bin" – See above.
Tried several different paths here as well without luck. */
hot: true,
inline: true,
stats: 'minimal',
compress: true,
host: '192.168.1.2',
port: '3000',
},
plugins: [
new HtmlWebpackPlugin(),
new webpack.HotModuleReplacementPlugin(){
multiStep: true
}
]
...