mirror of https://github.com/shunfei/cronsun
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.3 KiB
91 lines
2.3 KiB
var path = require('path')
|
|
var webpack = require('webpack')
|
|
|
|
var fontPublicPath = process.env.NODE_ENV === 'production' ? '/ui/' : '';
|
|
module.exports = {
|
|
entry: './src/main.js',
|
|
output: {
|
|
path: path.resolve(__dirname, './dist'),
|
|
publicPath: '/',
|
|
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/
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg|ttf|woff|woff2|eot)\w*/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
publicPath: fontPublicPath,
|
|
name: '[name].[ext]?[hash]'
|
|
}
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
loader: 'style-loader!css-loader'
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'vue$': 'vue/dist/vue.common.js',
|
|
'semantic$': 'semantic-ui/dist/semantic.min.js',
|
|
'semanticcss$': 'semantic-ui/dist/semantic.min.css',
|
|
'charts$': 'chart.js/dist/Chart.min.js'
|
|
}
|
|
},
|
|
devServer: {
|
|
proxy: {
|
|
'/v1': {
|
|
target: 'http://127.0.0.1:7079',
|
|
secure: false
|
|
}
|
|
},
|
|
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
|
|
})
|
|
])
|
|
}
|