-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·108 lines (106 loc) · 2.59 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 VueLoaderPlugin = require("vue-loader/lib/plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const FixStyleOnlyEntriesPlugin = require("webpack-fix-style-only-entries");
const RemovePlugin = require("remove-files-webpack-plugin");
module.exports = {
mode: "development",
entry: {
"widget/assets/js": "./widget/assets/vue/admin.js",
"widget/assets/css/admin": "./widget/assets/scss/admin.scss",
"widget/assets/css/public": "./widget/assets/scss/public.scss",
},
resolve: {
alias: {
vue$: "vue/dist/vue.esm.js", // Use the full build
},
},
output: {
filename: "[name]/admin.js",
path: path.resolve(__dirname),
},
plugins: [
new FixStyleOnlyEntriesPlugin(),
new MiniCssExtractPlugin({
filename: "[name].css",
}),
new VueLoaderPlugin(),
new RemovePlugin({
after: {
include: ["./css"],
},
}),
],
module: {
rules: [
{
test: /\.vue$/,
loader: "vue-loader",
},
{
test: /\.js$/,
use: "babel-loader",
exclude: /node_modules/,
},
{
test: /.(sc|c)ss$/,
use: [
"vue-style-loader",
"style-loader",
{
loader: MiniCssExtractPlugin.loader,
},
"css-loader",
"sass-loader",
{
loader: "postcss-loader",
options: {
sourceMap: true,
config: {
path: "postcss.config.js",
},
},
},
],
},
{
test: /\.sass$/,
use: [
"vue-style-loader",
"style-loader",
"css-loader",
{
loader: "sass-loader",
// Requires sass-loader@^7.0.0
options: {
implementation: require("sass"),
fiber: require("fibers"),
indentedSyntax: true, // optional
},
// Requires sass-loader@^8.0.0
options: {
implementation: require("sass"),
sassOptions: {
fiber: require("fibers"),
indentedSyntax: true, // optional
},
},
},
],
},
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: "file-loader",
options: {
name: "[name].[ext]",
outputPath: "admin/assets/fonts/",
},
},
],
},
],
},
};