PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.21
Booking for Appointments and Events Calendar – Amelia v1.2.21
2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / webpack.config.js
ameliabooking Last commit date
Licensing 2 years ago assets 1 year ago extensions 1 year ago languages 1 year ago public 1 year ago src 1 year ago v3 1 year ago vendor 1 year ago view 2 years ago .babelrc 6 years ago Readme_documentation.pdf 3 years ago ameliabooking.php 1 year ago package-lock.json 1 year ago package.json 4 years ago readme.txt 1 year ago webpack.config.js 6 years ago webpack.mix.js 1 year ago
webpack.config.js
27 lines
1 /**
2 * As our first step, we'll pull in the user's webpack.mix.js
3 * file. Based on what the user requests in that file,
4 * a generic config object will be constructed for us.
5 */
6
7 require('./node_modules/laravel-mix/src/index')
8 require(Mix.paths.mix())
9
10 /**
11 * Just in case the user needs to hook into this point
12 * in the build process, we'll make an announcement.
13 */
14
15 Mix.dispatch('init', Mix)
16
17 /**
18 * Now that we know which build tasks are required by the
19 * user, we can dynamically create a configuration object
20 * for Webpack. And that's all there is to it. Simple!
21 */
22
23 let WebpackConfig = require('./node_modules/laravel-mix/src/builder/WebpackConfig')
24
25 module.exports = new WebpackConfig().build()
26
27