1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-29 06:23:17 +03:00
guide/front/build/webpack.client.conf.js
2019-10-22 22:33:50 +04:00

40 lines
1.0 KiB
JavaScript

const path = require('path')
const merge = require('webpack-merge')
const VueSSRClientPlugin = require('vue-server-renderer/client-plugin')
const WebpackBar = require('webpackbar')
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin')
const baseConfig = require('./webpack.base.conf')
const isProduction = process.env.NODE_ENV === 'production'
const webpackConfig = merge(baseConfig, {
mode: isProduction ? 'production' : 'development',
// Entry should be array cause of webpack-hot-client requirements
entry: [path.resolve(__dirname, '../client/entry.client.ts')],
devtool: isProduction ? false : 'cheap-module-source-map',
optimization: {
splitChunks: {
name: 'manifest',
minChunks: Infinity
}
},
plugins: [
new VueSSRClientPlugin(),
new WebpackBar({
name: 'Client'
})
// TODO make it work
/* ,
new ForkTsCheckerWebpackPlugin({
vue: true,
tslint: true,
formatter: 'codeframe',
checkSyntacticErrors: false
}) */
]
})
module.exports = webpackConfig