1 Star 5 Fork 2

bingo_ying/website-navigation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.dev.js 806 Bytes
一键复制 编辑 原始数据 按行查看 历史
bingo_ying 提交于 2021-01-05 15:56 . fix:修复若干bug
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
const HtmlWebpackPlugin = require('html-webpack-plugin');
let webpackConfig = merge(common, {
devtool: 'source-map',
devServer: {
// host: "localhost",
// contentBase: './docs',
// before(app) { },
// proxy: {
// "/api": "http://localhost:3000"
// },
// 一切服务都启用gzip 压缩:
// compress: true,
port: 7777,
// local服务器自动打开浏览器。
open: true,
// quiet: true,
},plugins:[
new HtmlWebpackPlugin({
template: 'public/index.html',
fileName:'index.html',
reactPath: 'react.development.js',
reactDomPath: 'react-dom.development.js',
inject: 'body'
})
]
});
module.exports = webpackConfig;
// module.exports = smp.wrap(merge(webpackConfig));
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/bingoYYY/website-navigation.git
[email protected]:bingoYYY/website-navigation.git
bingoYYY
website-navigation
website-navigation
master

搜索帮助