1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/ncyz1111-Vue_Cordova

Клонировать/Скачать
webpack.config.js 1.9 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
ncyz111 Отправлено 21.03.2017 11:49 33b7b6a
var path = require("path")
var webpack = require("webpack")
module.exports = {
entry: './www/src/main.js',
output: {
path: path.resolve(__dirname, './www/dist'),
publicPath: './static/',
filename: 'build.js'
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
// the "scss" and "sass" values for the lang attribute to the right configs here.
// other preprocessors should work out of the box, no loader config like this nessessary.
'scss': 'vue-style-loader!css-loader!sass-loader',
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax'
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ["es2015"]
}
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
},
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.common.js'
}
},
devServer: {
historyApiFallback: true,
noInfo: true
},
performance: {
hints: false
},
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({
sourceMap: true,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
})
])
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/ncyz1111-Vue_Cordova.git
git@api.gitlife.ru:oschina-mirror/ncyz1111-Vue_Cordova.git
oschina-mirror
ncyz1111-Vue_Cordova
ncyz1111-Vue_Cordova
master