简单的webpack配置,但不起作用:
var path = require("path");
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
module: {
rules: [
{
test:/\.css$/,
use:['style-loader','css-loader']
}
]
},
plugins: [
new HtmlWebpackPlugin({
hash: true,
filename: 'index.html',
title: 'My Awesome application',
myPageHeader: 'Hello World',
template: './src/index.html',
})
],
devServer: {
port: 8000,
hot: true
},
};
当我使用“ hot:false”运行时,我的CSS已加载,但是使用“ hot:true”,我可以看到我的html,但未加载样式...
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
如果我使用webpack
进行构建,然后在浏览器中打开dist / index.html,它也可以正常工作。
在index.js中,我像这样导入了我的CSS:
import './styles/app.css';
〜
答案 0 :(得分:0)
我删除了init
并在脚本中添加了hot: true
选项,命令行版本自动添加了一个插件。