|
Server : LiteSpeed System : Linux premium92.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : rbnsfqys ( 805) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/rbnsfqys/www/wp-content/plugins/latepoint/ |
const path = require('path');
var webpack = require('webpack');
module.exports = {
mode: 'none',
entry: {
'block-book-button': {
'import': './blocks/src/book-button/index.js',
'filename': '../blocks/build/book-button/[name].js'
},
'sprintf' : './node_modules/sprintf-js/dist/sprintf.min.js',
'dragula' : './node_modules/dragula/dist/dragula.min.js',
'Chart' : './node_modules/chart.js/dist/Chart.min.js',
'moment' : './node_modules/moment/min/moment-with-locales.min.js',
'jquery.inputmask' : './node_modules/inputmask/dist/jquery.inputmask.min.js',
'daterangepicker' : './node_modules/daterangepicker/daterangepicker.js',
'pickr' : './node_modules/pickr-widget/dist/pickr.min.js'
},
output: {
filename: '[name].min.js',
path: path.resolve(__dirname, 'public', 'javascripts', 'vendor'),
},
plugins: [
new webpack.ProvidePlugin({
moment: "moment"
})
]
};