This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
webpack.config.js
108 lines (106 loc) · 3.6 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
const path = require('path');
const webpack = require('webpack');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const Visualizer = require('webpack-visualizer-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: './src/frontend/js/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'js/main.js',
publicPath: '/'
},
resolve: {
alias: {
'tabler-core': 'tabler-ui/dist/assets/js/core',
'bootstrap': 'tabler-ui/dist/assets/js/vendors/bootstrap.bundle.min',
'sparkline': 'tabler-ui/dist/assets/js/vendors/jquery.sparkline.min',
'selectize': 'tabler-ui/dist/assets/js/vendors/selectize.min',
'tablesorter': 'tabler-ui/dist/assets/js/vendors/jquery.tablesorter.min',
'vector-map': 'tabler-ui/dist/assets/js/vendors/jquery-jvectormap-2.0.3.min',
'vector-map-de': 'tabler-ui/dist/assets/js/vendors/jquery-jvectormap-de-merc',
'vector-map-world': 'tabler-ui/dist/assets/js/vendors/jquery-jvectormap-world-mill',
'circle-progress': 'tabler-ui/dist/assets/js/vendors/circle-progress.min'
}
},
module: {
rules: [
// Shims for tabler-ui
{
test: /assets\/js\/core/,
loader: 'imports-loader?bootstrap'
},
{
test: /jquery-jvectormap-de-merc/,
loader: 'imports-loader?vector-map'
},
{
test: /jquery-jvectormap-world-mill/,
loader: 'imports-loader?vector-map'
},
// other:
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.html$/,
use: [
{
loader: 'html-loader',
options: {
minimize: false,
hash: true
}
}
]
},
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
]
},
{
test: /.*tabler.*\.(jpe?g|gif|png|svg|eot|woff|ttf)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'assets/tabler-ui/'
}
}
]
}
]
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
}),
new HtmlWebPackPlugin({
template: './src/frontend/html/index.html',
filename: './index.html'
}),
new MiniCssExtractPlugin({
filename: 'css/[name].css',
chunkFilename: 'css/[id].css'
}),
new Visualizer({
filename: '../webpack_stats.html'
}),
new CopyWebpackPlugin([{
from: 'src/frontend/app-images',
to: 'images',
toType: 'dir',
context: '/app'
}])
]
};