chore: build

This commit is contained in:
cha0s 2019-09-30 23:38:44 -05:00
parent 4f7b0c74aa
commit 945ee700cb
3 changed files with 32 additions and 22 deletions

View File

@ -34,6 +34,7 @@
"scripts": {
"client": "webpack-dev-server --hot --config webpack.client.config.js",
"server": "DEBUG=@avocado:* webpack --autorun --watch --hot --config webpack.server.config.js",
"client:build": "webpack --config webpack.client.config.js",
"server:build": "webpack --config webpack.server.config.js",
"start": "webpack --config webpack.server.config.js && webpack-dev-server --config webpack.client.config.js"
},

View File

@ -4,6 +4,7 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const config = require('./webpack.common.config');
const isProduction = !!process.argv.find((arg) => '--production' === arg);
config.entry = {
client: [
@ -16,7 +17,8 @@ config.entry = {
path.join(__dirname, 'client', 'index.js'),
],
};
config.devServer = {
if (!isProduction) {
config.devServer = {
compress: true,
contentBase: path.resolve(__dirname, 'resource'),
disableHostCheck: true,
@ -28,16 +30,20 @@ config.devServer = {
host: '0.0.0.0',
overlay: true,
port: 8421,
proxy: {
'/avocado': {
target: 'http://localhost:8420',
ws: true,
},
},
// proxy: {
// '/avocado': {
// target: 'http://localhost:8420',
// ws: true,
// },
// },
stats: 'minimal',
watchContentBase: true,
};
config.devtool = 'eval-source-map';
};
config.devtool = 'eval-source-map';
}
else {
config.devtool = 'source-map';
}
// Babel config file.
config.module.rules[0].use.options.configFile = path.resolve(
__dirname, 'babel.client.config.js'

View File

@ -5,8 +5,11 @@ const nodeExternals = require('webpack-node-externals');
const StartServerPlugin = require('start-server-webpack-plugin');
const config = require('./webpack.common.config');
const isProduction = !!process.argv.find((arg) => '--production' === arg);
config.devtool = 'source-map';
if (!isProduction) {
config.devtool = 'source-map';
}
config.entry = {
server: [
'source-map-support/register',