项目运行npm run dev浏览器始终报cannot get /
程序员文章站
2022-07-15 12:50:51
...
问题描述:项目运行npm run dev浏览器始终报cannot get /
问题原因:打包后dist文件缺少默认index.html,导致404
解决办法:使用htmlWebpackPlugin生成index.html或者将项目根目录下面的index.html复制到dist目录下,另外需要额外设置一下contentBase,告诉服务器内容的来源。仅在需要提供静态文件时才进行配置。webpack开发环境配置如下:
devServer: {
contentBase: path.resolve(__dirname, './dist'),
host: 'localhost',
compress: true,
port: 8088,
historyApiFallback: true,
}
下一篇: 文章标题