This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
66 lines (65 loc) · 1.66 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
const path = require('path');
const webpack = require('webpack');
module.exports = (env, argv) => {
let prodPlugins = [];
if (argv.mode === 'production') {
prodPlugins = [
new FaviconsWebpackPlugin(path.join(__dirname, 'public', 'favicon.png')),
new CopyWebpackPlugin([
{ from: 'public', to: './'}
]),
new webpack.NamedModulesPlugin()
]
}
return {
entry: {
main: './src/index.tsx',
},
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: 'babel-loader',
options: {
babelrc: false,
plugins: ['react-hot-loader/babel'],
},
},
{
loader: 'ts-loader',
options: {
transpileOnly: true // HMR doesn't work without this
}
}
]
}
]
},
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
plugins: [
...prodPlugins,
new HtmlWebpackPlugin({
title: 'nodesmith.io',
template: path.join(__dirname, 'template.index.html'),
chunks: ['main'],
filename: 'index.html'
})
],
devServer: {
contentBase: path.resolve('public'),
port: 3330,
headers: {
"Set-Cookie": `apiHost=http://localhost:8081;`
}
},
performance: { hints: false }
};
};