forked from getlago/lago-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
96 lines (92 loc) · 2.47 KB
/
webpack.dev.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
90
91
92
93
94
95
96
const path = require('path')
const webpack = require('webpack')
const { merge } = require('webpack-merge')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin')
const common = require('./webpack.common.js')
const DEVELOPMENT_MODE = 'development'
module.exports = (env) =>
merge(common(env, DEVELOPMENT_MODE), {
mode: DEVELOPMENT_MODE,
devtool: 'cheap-module-source-map', // Maybe change to 'eval' if build is too slow
module: {
rules: [
{
test: /\.(js|jsx)$/,
include: path.resolve(__dirname, 'src'),
use: ['babel-loader'],
},
{
test: /\.tsx?$/,
loader: 'ts-loader',
include: path.resolve(__dirname, 'src'),
options: {
// disable type checker - we will use it in fork plugin
transpileOnly: true,
},
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.svg$/,
include: path.resolve(__dirname, 'src'),
use: [
{
loader: '@svgr/webpack',
options: {
svgoConfig: {
pluggins: [{ prefixIds: false, prefixClassNames: false }],
},
},
},
],
},
{
test: /\.(jpg|png|jpeg)$/,
include: path.resolve(__dirname, 'src'),
type: 'asset/inline',
},
{
test: /\.(js)$/i,
include: '/node_modules/',
use: [
{
loader: 'file-loader',
},
],
},
],
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
new HtmlWebpackPlugin({
title: 'Lago - Local',
template: path.join(__dirname, 'src', 'index.html'),
favicon: './src/public/images/favicon-local.svg',
}),
new webpack.HotModuleReplacementPlugin(),
],
devServer: {
historyApiFallback: true,
hot: 'only',
port: process.env.PORT || 8080,
static: {
directory: path.resolve(__dirname, './dist'),
},
client: {
overlay: true,
webSocketURL: {
port: 443,
},
},
allowedHosts: ['app.lago.dev'],
},
optimization: {
runtimeChunk: true,
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false,
},
})