-
Notifications
You must be signed in to change notification settings - Fork 12
/
webpack.design.js
89 lines (86 loc) · 2.56 KB
/
webpack.design.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* eslint-env node */
const path = require('path');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const { WebpackManifestPlugin } = require('webpack-manifest-plugin');
const config = {
entry: {
main: path.resolve(__dirname, 'design_app/src/index.js'),
},
output: {
path: path.resolve(process.cwd(), 'dist'),
publicPath: '/',
filename: '[name].[hash].js',
chunkFilename: '[id].[hash].js',
},
devServer: {
port: 3042,
historyApiFallback: true,
open: true,
static: {
directory: path.join(__dirname, 'newsroom', 'static'),
publicPath: '/static/',
},
},
module: {
rules: [
{
test: /\.(ts|tsx|js|jsx)$/,
include: [
path.resolve(__dirname, 'design_app/src'),
path.resolve(__dirname, 'assets'),
path.resolve(__dirname, 'node_modules/bootstrap'),
path.resolve(process.cwd(), 'node_modules/bootstrap'),
],
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader',
],
},
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
url: (url, resourcePath) => url.startsWith('/') === false,
},
},
'sass-loader',
],
},
{
test: /\.(png|jpe?g|gif|svg|eot|ttf|woff|woff2)$/i,
use: [
'file-loader',
],
},
],
},
resolve: {
extensions: [ '.ts', '.tsx', '.js', '.jsx'],
modules: [
path.resolve(__dirname, 'design_app/src'),
path.resolve(__dirname, 'assets'),
'node_modules',
],
alias: {
'moment-timezone': 'moment-timezone/builds/moment-timezone-with-data-10-year-range',
},
mainFields: ['browser', 'main'],
},
plugins: [
new HtmlWebPackPlugin({
template: path.resolve(__dirname, 'design_app/public', 'index.html'),
}),
new WebpackManifestPlugin(),
],
};
module.exports = config;