This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
82 lines (81 loc) · 2.18 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
const path = require('path');
const { VueLoaderPlugin } = require('vue-loader')
module.exports = {
mode: 'development',
entry: {
main: './main/src/resources/app/javascript/journeyplan.js',
trammap: './main/src/resources/app/javascript/trammap.js',
traveltimes: './main/src/resources/app/javascript/traveltimes.js',
routemap: './main/src/resources/app/javascript/routemap.js',
linksmap: './main/src/resources/app/javascript/linksmap.js',
frequency: './main/src/resources/app/javascript/frequency.js'
},
output: {
path: path.resolve(__dirname, 'build/resources/main/app'),
filename: '[name].js',
publicPath: '/app/'
},
resolve: {
alias: {
vue: 'vue/dist/vue.min.js'
}
},
module:{
rules:[
{
test:/\.css$/,
use:['style-loader','css-loader']
},
{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test:/\.png$/,
type: 'asset/resource',
generator: {
filename: 'images/[hash][ext][query]'
}
},
{
test:/\.html$/,
type: 'asset/resource' //,
// generator: {
// filename: 'images/[hash][ext][query]'
// }
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]'
}
},
{
test: /\.s(c|a)ss$/,
use: [
'vue-style-loader',
'css-loader',
{
loader: 'sass-loader',
// Requires sass-loader@^7.0.0
options: {
implementation: require('sass'),
indentedSyntax: true // optional
},
// Requires >= sass-loader@^8.0.0
options: {
implementation: require('sass'),
sassOptions: {
indentedSyntax: true // optional
},
},
},
],
},
]
},
plugins: [
new VueLoaderPlugin()
]
};