-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
169 lines (152 loc) · 6.73 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
let Encore = require('@symfony/webpack-encore');
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
//const BrowserSyncConfig = require('./webpack.config.browsersync.js');
const url = require("url");
const fileSync = require("fs");
const mime = require("mime");
Encore
.setOutputPath('src/Resources/public/webpack')
.setPublicPath('/bundles/plentatooltip/webpack')
.setManifestKeyPrefix('plentatooltip')
.addEntry('layout', './layout/js/layout.js')
.addEntry('overlay_showAfterScroll', './layout/js/overlay_showAfterScroll.js')
.addEntry('overlay_showAfterTime', './layout/js/overlay_showAfterTime.js')
.addEntry('overlay_showOnExit', './layout/js/overlay_showOnExit.js')
.addEntry('overlay_showOnPageLoad', './layout/js/overlay_showOnPageLoad.js')
.addStyleEntry('overlay_default', './layout/scss/overlay_default.scss')
//.splitEntryChunks()
// will require an extra script tag for runtime.js
// but, you probably want this, unless you're building a single-page app
//.enableSingleRuntimeChunk()
.disableSingleRuntimeChunk()
.cleanupOutputBeforeBuild()
.enableSourceMaps(!Encore.isProduction())
.enablePostCssLoader()
.enableSassLoader()
// enables hashed filenames (e.g. app.abc123.css)
.enableVersioning(Encore.isProduction())
// enables @babel/preset-env polyfills
/*.configureBabelPresetEnv((config) => {
config.useBuiltIns = 'usage';
config.corejs = 3;
})*/
.configureBabel(function(babelConfig) {
babelConfig.plugins.push('@babel/plugin-transform-runtime');
}, {})
/*.addPlugin(
new BrowserSyncPlugin({
// browse to http://localhost:3000/ during development,
// ./public directory is being served
host: BrowserSyncConfig.BrowserSyncHost,
port: BrowserSyncConfig.BrowserSyncPort,
//server: { baseDir: ['layout'] },
proxy: BrowserSyncConfig.BrowserSyncProxy,
browser: BrowserSyncConfig.BrowserSyncBrowser,
middleware: [
function (req, res, next) {
let parsed = url.parse(req.url);
let match = parsed.pathname.match(/layout\/(.+)\.(.+)\.css$/);
if (match) {
let path = 'public/layout/'+match[1]+'.css';
try {
if (fileSync.existsSync(path)) {
let text = fileSync.readFileSync(path).toString('utf-8');
res.setHeader('Content-Type', 'text/css');
res.end(text);
}
} catch (err) {}
return;
}
next();
},
function (req, res, next) {
let parsed = url.parse(req.url);
let match = parsed.pathname.match(/layout\/(.+)\.(.+)\.js$/);
if (match) {
let path = 'public/layout/'+match[1]+'.js';
try {
if (fileSync.existsSync(path)) {
let text = fileSync.readFileSync(path).toString('utf-8');
res.setHeader('Content-Type', 'application/javascript');
res.end(text);
}
} catch (err) {}
return;
}
next();
},
function (req, res, next) {
let parsed = url.parse(req.url);
let match = parsed.pathname.match(/layout\/fonts\/(.+)\.(.+)\.(.+)$/);
if (match) {
let path = 'public/layout/fonts/'+match[1]+'.'+match[2]+'.'+match[3];
try {
if (fileSync.existsSync(path)) {
res.setHeader('Content-Type', mime.getType(path));
res.end(fileSync.readFileSync(path));
}
} catch (err) {}
return;
}
next();
},
function (req, res, next) {
let parsed = url.parse(req.url);
let match = parsed.pathname.match(/layout\/images\/(.+)\.(.+)\.(.+)$/);
if (match) {
let path = 'public/layout/images/'+match[1]+'.'+match[2]+'.'+match[3];
try {
if (fileSync.existsSync(path)) {
res.setHeader('Content-Type', mime.getType(path));
res.end(fileSync.readFileSync(path));
}
} catch (err) {}
return;
}
next();
},
function (req, res, next) {
let parsed = url.parse(req.url);
let match = parsed.pathname.match(/layout\/vendors-(.+)\.js$/);
if (match) {
let path = 'public/'+match[0];
try {
if (fileSync.existsSync(path)) {
res.setHeader('Content-Type', mime.getType(path));
res.end(fileSync.readFileSync(path));
}
} catch (err) {}
return;
}
next();
},
function (req, res, next) {
let parsed = url.parse(req.url);
let match = parsed.pathname.match(/layout\/layout_js(.+)\.(.+)$/);
if (match) {
let path = 'public/'+match[0];
try {
if (fileSync.existsSync(path)) {
res.setHeader('Content-Type', mime.getType(path));
res.end(fileSync.readFileSync(path));
}
} catch (err) {}
return;
}
next();
},
]
})
)*/
;
let defaultConfig = Encore.getWebpackConfig();
// Enable Sass @debug
if (defaultConfig.stats.loggingDebug) {
defaultConfig.stats.loggingDebug.push = 'sass-loader';
} else {
defaultConfig.stats.loggingDebug = [];
defaultConfig.stats.loggingDebug.push('sass-loader');
}
defaultConfig.name = 'default';
module.exports = [defaultConfig];