-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
64 lines (57 loc) · 1.58 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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path')
// loader: biblioteca que entiende algo del código y lo transforma para que webpack lo entienda
const ruleForStyles = {
test: /\.css$/,
use: [
// carga el css y entiende el código
'style-loader',
// referencias dentro de css (imports y requires de css)
'css-loader']
}
const rulesForJavascript = {
test: /\.js$/,
loader: 'babel-loader',
// opciones de babel
options: {
presets: [
[
'@babel/preset-react',
{
runtime: 'automatic' // 'classic'
}
]
]
}
};
// plugin: añadir funcionalidad a webpack
// no tener que generar un html index a mano
const rules = [rulesForJavascript, ruleForStyles];
// la configuración de webpack puede ser también un objeto o una función
module.exports = (env, argv) => {
const {mode} = argv
const isProduction = mode === 'production'
return {
entry: './src/index.js',
output: {
filename: isProduction ? '[name].[contenthash].js' : 'main.js',
path: path.resolve(__dirname, 'build')
},
plugins: [
new HtmlWebpackPlugin({ template: 'src/index.html' })
],
// loaders
module: {
// lista de reglas para el loader
rules: rules
},
devServer: {
open: true, // abrimos el navegador
port: 3000,
liveReload: true,
compress: true
},
// para generar el sourcemap y poder debugar desde el navegador (apuntar las referencias y líneas donde hay problemas y para concuerde con el código)
devtool: 'source-map'
}
}