forked from nystudio107/craft-seomatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.settings.js
78 lines (76 loc) · 2.09 KB
/
webpack.settings.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
// webpack.settings.js - webpack settings config
// node modules
require('dotenv').config();
// Webpack settings exports
// noinspection WebpackConfigHighlighting
module.exports = {
name: "SEOmatic",
copyright: "nystudio107",
paths: {
src: {
base: "./src/assetbundles/seomatic/src/",
css: "./src/assetbundles/seomatic/src/css/",
js: "./src/assetbundles/seomatic/src/js/"
},
dist: {
base: "./src/assetbundles/seomatic/dist/",
clean: [
'**/*'
]
},
templates: "./src/templates/"
},
urls: {
publicPath: () => process.env.PUBLIC_PATH || "",
},
vars: {
cssName: "styles"
},
entries: {
"dashboard": "dashboard.js",
"content-seo": "content-seo.js",
"seomatic": "seomatic.js",
"seomatic-meta": "seomatic-meta.js",
"seomatic-tokens": "seomatic-tokens.js",
"twig-editor": "twig-editor.js",
"javascript-editor": "javascript-editor.js",
},
babelLoaderConfig: {
exclude: [
/(node_modules|bower_components)/
],
},
copyWebpackConfig: [
],
devServerConfig: {
public: () => process.env.DEVSERVER_PUBLIC || "http://localhost:8080",
host: () => process.env.DEVSERVER_HOST || "localhost",
poll: () => process.env.DEVSERVER_POLL || false,
port: () => process.env.DEVSERVER_PORT || 8080,
https: () => process.env.DEVSERVER_HTTPS || false,
},
manifestConfig: {
basePath: ""
},
purgeCssConfig: {
paths: [
"./src/templates/**/*.{twig,html}",
"./src/assetbundles/seomatic/src/vue/**/*.{vue,html}"
],
whitelist: [
"./src/assetbundles/seomatic/src/css/components/*.css",
"./node_modules/tokenfield/dist/tokenfield.css"
],
whitelistPatterns: [],
extensions: [
"html",
"js",
"twig",
"vue"
]
},
saveRemoteFileConfig: [
],
createSymlinkConfig: [
],
};