forked from silvercommerce/silvercommerce-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
98 lines (97 loc) · 3.17 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
const Path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const PATHS = {
MODULES: Path.resolve('node_modules'), // your node_modules folder name, or full path
FILES_PATH: '../', // relative path from your css files to your other files, such as images and fonts
ROOT: Path.resolve(), // the root path, where your webpack.config.js is located.
SRC: Path.resolve('src'), // the root path, where your webpack.config.js is located.
SCSS: Path.resolve('src/scss'), // the root path to your source files
CSS: Path.resolve('css'), // the root path to your source files
JS: Path.resolve('javascript'), // the root path to your built files
};
module.exports = {
entry: {
bundle: [
`${PATHS.MODULES}/jquery/dist/jquery.js`,
`${PATHS.MODULES}/popper.js/dist/umd/popper.js`,
`${PATHS.MODULES}/tether/dist/js/tether.js`,
`${PATHS.MODULES}/bootstrap/dist/js/bootstrap.js`,
`${PATHS.MODULES}/imagesloaded/imagesloaded.js`,
`${PATHS.MODULES}/jquery-match-height/dist/jquery.matchHeight.js`,
`${PATHS.MODULES}/jquery-zoom/jquery.zoom.js`,
`${PATHS.MODULES}/@fortawesome/fontawesome-free/js/all.js`
],
script: [
`${PATHS.SRC}/javascript/script.js`
],
bundlecss: [
`${PATHS.SCSS}/bundle.scss`
],
editor: [
`${PATHS.SCSS}/editor.scss`
]
},
output: {
path: PATHS.ROOT,
filename: 'javascript/[name].js',
publicPath: PATHS.ROOT
},
module: {
rules: [
{
test: /\.(sa|sc|c)ss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === 'development',
},
},
'css-loader',
'sass-loader',
]
},
{
test: /\.(png|jpe?g|gif)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'images',
publicPath: '../images',
name: '[name].[ext]?[hash]'
},
},
]
},
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: '../fonts'
}
}
]
}
]
},
plugins: [
new MiniCssExtractPlugin(
{
path: PATHS.ROOT,
filename: 'css/[name].css',
chunkFilename: 'css/[id].css',
}
)
],
resolve: {
// Expose Jquery Globally
alias: {
jquery: "jquery/src/jquery"
}
}
};