gpt4 book ai didi

javascript - 哈巴狗 + webpack-dev-server

转载 作者:数据小太阳 更新时间:2023-10-29 05:37:21 26 4
gpt4 key购买 nike

我正在使用 webpack v4,我正在尝试将 Pugwebpack-dev-server 一起使用,但是当我运行 webpack-dev-server - -mode development 它不提供已编译的 Pug。请帮忙。我不知道该怎么办。感谢您的回复。这是我的配置:

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
entry: './src/js/main.js',
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.pug$/,
use: {
loader: 'pug-loader',
options: {
pretty: true
}
}
}
]
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
hot: true,
open: true,
progress: true
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src/templates/pages/index.pug'),
inject: false
})
]
};

最佳答案

你好,你必须在 HtmlWebpackPlugin 上指定文件名,这样你就可以拥有你的从 localhost:3000 或 localhost:3000/index.html 提供的 html

devServer: {
...,
port: 3000
}
...
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src/templates/pages/index.pug'),
filename: 'index.html'
})
]

关于javascript - 哈巴狗 + webpack-dev-server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50276599/

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