-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
89 lines (88 loc) · 2.23 KB
/
webpack.dev.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const path = require('path');
// const webpack = require('webpack');
/* css-loaders, style-loader y extract-text-webpack-plugin */
const ExtractTextPlugin = require('extract-text-webpack-plugin');
/*
Config Advanced dev
Nota: siempre hay que copilar webpack la primera vez y luego si correr webpack-dev-server
*/
module.exports = {
entry: {
home: path.resolve(__dirname, 'src/index.jsx')
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'js/[name].js',
},
devServer: {
contentBase: path.resolve(__dirname, 'views'),
port: 3000
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: ['es2015', 'es2016', 'react']
}
}
},
{
test: /\.(sass|scss)$/,
exclude: /(node_modules)/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
}),
},
{
test: /\.(jp?g|png|gif|svg)$/i,
exclude: /node_modules/,
use: [
{
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
publicPath: '', // Recordar que se puede agregar la ruta donde van a estar las images
outputPath: 'images/'
}
},
{
loader: 'image-webpack-loader',
options: {
gifsicle: {
interlaced: false,
},
optipng: {
optimizationLevel: 7,
},
pngquant: {
quality: '65-90',
speed: 4
},
mozjpeg: {
progressive: true,
quality: 65
},
svgo: {
progressive: true,
quality: 65
},
// Specifying webp here will create a WEBP version of your JPG/PNG images
// se comento por errores
// webp: {
// quality: 75
// }
}
}
]
}
]
},
plugins: [
new ExtractTextPlugin('css/[name].css'),
]
}