-
Notifications
You must be signed in to change notification settings - Fork 16
/
webpack.dev.js
106 lines (102 loc) · 2.58 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
97
98
99
100
101
102
103
104
105
106
const common = require('./webpack.common');
const codeDevConfig = require('./code/configs/webpack/webpack.dev');
const merge = require('webpack-merge');
const DotenvWebpack = require('dotenv-webpack');
const dotenv = require('dotenv');
const dotenvPath = './.env.development';
const proxyList = require("./code/configs/proxy");
const ExtractCssChunksWithPageDirection = require("extract-css-chunks-webpack-plugin-with-page-direction");
const RtlCssPlugin = require('rtl-css-transform-webpack-plugin');
const env = dotenv.config({
path: dotenvPath
}).parsed;
const ASSETS_PATH = env.ASSETS_PATH || 'assets';
const proxy = {};
proxyList.map(record => {
proxy[record.path] = {
target: record.target,
changeOrigin: true,
pathRewrite: { [`^${record.path}`]: "" },
logLevel: 'debug'
};
});
const config = {
mode: 'development',
devtool: 'inline-source-map',
plugins: [
new DotenvWebpack({
path: dotenvPath
}),
new ExtractCssChunksWithPageDirection({
filename: `${ASSETS_PATH}/[name]-[pagedir].css`,
chunkFilename: `${ASSETS_PATH}/[name]-[pagedir].css`
}),
new RtlCssPlugin({
filename: `${ASSETS_PATH}/[name]-rtl.css`,
sourcemap: true
})
],
devServer: {
port: env.PORT,
proxy
},
module: {
rules: [
{
test: /\.(le|c)ss$/,
use: [
// style-loader
{
loader: ExtractCssChunksWithPageDirection.loader,
options: {
hot: true,
reloadAll: true
}
},
// css-loader
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: true,
camelCase: true,
localIdentName: '[name]__[local]__[hash:base64:5]'
}
},
// less-loader
{
loader: 'less-loader'
}
]
},
{
test: /\.(sa|sc|c)ss$/,
use: [
// style-loader
{
loader: ExtractCssChunksWithPageDirection.loader,
options: {
hot: true,
reloadAll: true
}
},
// css-loader
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: true,
camelCase: true,
localIdentName: '[name]__[local]__[hash:base64:5]'
}
},
// sass-loader
{
loader: 'sass-loader'
}
]
}
]
}
};
module.exports = merge.smart(common, config, codeDevConfig);