119 lines
2.7 KiB
JavaScript
119 lines
2.7 KiB
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
|
const execSync = require('child_process').execSync;
|
|
|
|
let commitShaId;
|
|
|
|
try {
|
|
commitShaId = '#'+execSync('git rev-parse HEAD').toString().substr(0,10);
|
|
} catch (e) {}
|
|
|
|
const mode = process.env.NODE_ENV || 'development';
|
|
|
|
module.exports = {
|
|
mode,
|
|
entry: {
|
|
upload: './src/upload.js',
|
|
download: './src/download.js',
|
|
admin: './src/admin.js',
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, '../public/app'),
|
|
publicPath: '/app/',
|
|
filename: '[name].js'
|
|
},
|
|
optimization: {
|
|
splitChunks: {
|
|
chunks: 'all',
|
|
name: 'common'
|
|
}
|
|
},
|
|
// devtool: 'source-map',
|
|
devtool: 'none',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader',
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules\/(?!(vue-awesome|)\/).*/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: [['@babel/preset-env', {
|
|
modules: false,
|
|
"useBuiltIns": "usage",
|
|
"targets": ["last 2 version", "ie 11", "not dead"]
|
|
}]],
|
|
}
|
|
}
|
|
},
|
|
{
|
|
test: /\.pug$/,
|
|
oneOf: [
|
|
// this applies to `<template lang="pug">` in Vue components
|
|
{
|
|
resourceQuery: /^\?vue/,
|
|
use: ['pug-plain-loader']
|
|
},
|
|
// this applies to pug imports inside JavaScript
|
|
{
|
|
use: ['raw-loader', 'pug-plain-loader']
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [
|
|
'vue-style-loader',
|
|
'css-loader',
|
|
]
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg)$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: '[name].[ext]?[hash]'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'vue$': mode !== 'development' ? 'vue/dist/vue.runtime.min.js' : 'vue/dist/vue.runtime.js'
|
|
}
|
|
},
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
|
PSITRANSFER_VERSION: JSON.stringify(process.env.PSITRANSFER_VERSION || commitShaId || 'dev')
|
|
}),
|
|
],
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
noInfo: false,
|
|
disableHostCheck: true,
|
|
host: '0.0.0.0',
|
|
proxy: [
|
|
// Proxy requests to BE in DEV mode
|
|
// https://webpack.github.io/docs/webpack-dev-server.html#proxy
|
|
{
|
|
context: ['/**'],
|
|
target: 'http://localhost:3000/'
|
|
}
|
|
]
|
|
},
|
|
performance: {
|
|
hints: false
|
|
},
|
|
};
|
|
|
|
if(process.env.ANALYZE) {
|
|
module.exports.plugins.push(new BundleAnalyzerPlugin());
|
|
}
|