-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.settings.js
69 lines (67 loc) · 1.55 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
// webpack.settings.js - webpack settings config
// node modules
require("dotenv").config();
// Webpack settings exports
// noinspection WebpackConfigHighlighting
module.exports = {
name: "Batch Craft Starter",
copyright: "Batch Development",
paths: {
working: process.cwd(),
src: {
base: "./src/",
css: "./src/css/",
js: "./src/js/",
},
dist: {
base: `${process.env.DOCROOT || "public"}/dist/`,
clean: ["**/*"],
},
templates: "./templates/",
},
urls: {
publicPath: () => process.env.PUBLIC_PATH || "/dist/",
},
vars: {
cssName: "styles",
},
entries: {
app: "app.js",
},
babelLoaderConfig: {
exclude: [/(node_modules|bower_components)/],
},
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: "",
},
eslintConfig: {
files: "src",
extensions: [".js", ".vue"],
baseConfig: {
root: true,
parser: "vue-eslint-parser",
parserOptions: {
parser: "babel-eslint",
sourceType: "module",
ecmaVersion: 2020,
},
extends: [
"airbnb-base",
"plugin:vue/recommended",
"plugin:prettier/recommended",
"prettier/vue",
],
env: {
node: true,
browser: true,
},
},
},
};