1 Star 0 Fork 0

whouu / LVBlog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
whouu 提交于 2016-10-17 18:09 . 1
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry: './resources/assets/js/main.js',
output: {
path: path.resolve(__dirname, './public/js/build'),
publicPath: '/js/',
filename: 'app.js'
},
resolveLoader: {
root: path.join(__dirname, 'node_modules'),
},
watch: true,
module: {
loaders: [{
test: /\.vue$/,
loader: 'vue'
}, {
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
}, {
test: /\.json$/,
loader: 'json'
}, {
test: /\.css$/,
loader: 'css'
}, {
test: /\.html$/,
loader: 'vue-html'
}, {
test: /\.(png|jpg|gif|svg)$/,
loader: 'url',
query: {
limit: 10000,
name: '[name].[ext]?[hash]'
}
}]
},
devServer: {
historyApiFallback: true,
noInfo: true
},
devtool: '#eval-source-map'
}
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map';
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.optimize.OccurenceOrderPlugin()
])
}
PHP
1
https://gitee.com/nir_passion/LVBlog.git
git@gitee.com:nir_passion/LVBlog.git
nir_passion
LVBlog
LVBlog
master

搜索帮助