1 Star 1 Fork 0

向雄/Docker-部署前端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
向雄 提交于 2018-03-25 23:36 . 初始化项目
var webpack = require('webpack');
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
context: path.join(__dirname),
entry:{
// app:['webpack-hot-middleware/client?noInfo=true&reload=true',path.resolve(__dirname, "./src/index.js")]
app: path.resolve(__dirname, "./src/index.js"),
login:path.resolve(__dirname,"./src/login.js") //可配置多个文件.
},
output:{
path: path.resolve(__dirname,"./out/static"), // 打包存放地址.
publicPath:'/', // 调试或者 CDN 之类的域名
filename: "[name].js" // [name] 的值是entry的键值.[hash].
},
resolve:{
},
module: {
loaders: [
{
test: /\.js?$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015']
}
}
]
},
plugins:[
new HtmlWebpackPlugin({
filename:'./index.html',
// 渲染输出html文件名,路径相对于 output.path 的值.
template:path.resolve(__dirname,'./src/views/index.html'),
inject:true // 渲染源模板文件
}),
new HtmlWebpackPlugin({
template:path.resolve(__dirname,'./src/views/login.html'),
filename:'./login.html',
inject:true
}),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/caonimashi/docker_deployment_front_end.git
git@gitee.com:caonimashi/docker_deployment_front_end.git
caonimashi
docker_deployment_front_end
Docker-部署前端
master

搜索帮助