1 Star 0 Fork 0

wxdx110/cbs_client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 932 Bytes
一键复制 编辑 原始数据 按行查看 历史
cuitaocrazy 提交于 2018-05-27 00:20 . 完善添加用户
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
// eslint-disable-next-line
const CleanWebpackPlugin = require('clean-webpack-plugin')
module.exports = {
target: 'web',
entry: './src/client/main.js',
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
},
module: {
rules: [{ test: /\.js$/, use: 'babel-loader', exclude: /node_modules/ }, { test: /\.css$/, use: ['style-loader', 'css-loader'] }],
},
devServer: {
port: 2999,
open: true,
historyApiFallback: true,
proxy: {
'/api': 'http://localhost:3000',
'/socket.io': {
target: 'http://localhost:3000',
ws: true,
},
},
},
plugins: [
new HtmlWebpackPlugin({
favicon: 'assets/favicon.ico',
template: 'assets/template.html',
minify: {
removeComments: true,
collapseWhitespace: true,
},
}),
],
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wxdx110/cbs_client.git
[email protected]:wxdx110/cbs_client.git
wxdx110
cbs_client
cbs_client
master

搜索帮助