-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.dev.js
84 lines (68 loc) · 2.44 KB
/
webpack.dev.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
"use strict";
// Development webpack configuration run through "npm run live".
// Meant to be run as a development server for live reloading and testing.
const path = require("path");
const merge = require("webpack-merge");
const common = require("./webpack.common.js");
module.exports = merge(common, {
mode: "development",
module: {
rules: [
{ // Javascript source map loader for easier debugging.
test: /\.js$/,
loader: "source-map-loader",
enforce: "pre"
},
{ // Lint JavaScript in Vue templates and beyond.
test: /\.(jsx?|vue)$/,
exclude: /node_modules/,
loader: "eslint-loader",
enforce: "pre",
},
{ // Lint TypeScript using tslint beforehand. Ignore Vue files.
test: /^((?!\.vue).)*\.tsx?$/,
exclude: /node_modules/,
loader: "tslint-loader",
enforce: "pre"
},
{ // Lint TypeScript in Vue files.
test: /\.vue\.tsx?$/,
exclude: /node_modules/,
loader: "vue-tslint-loader",
enforce: "pre"
},
{ // Transpile and bundle stylesheets in their own file.
test: /\.scss$/,
use: [{
loader: "style-loader"
},
{
loader: "css-loader", options: {
sourceMap: true
}
},
{
loader: "sass-loader", options: {
sourceMap: true,
includePaths: [path.resolve(__dirname, "./src/style/")]
}
}]
}
]
},
plugins: [],
devServer: {
host: "localhost", // Change in case you want a different host to bind to.
port: 8080, // Development server port.
compress: true, // Enable gzip compression.
open: false, // If to open a browser after initialization.
contentBase: path.resolve(__dirname, "./src/"), // Set the content base.
watchContentBase: true, // Reload for code changes to static assets.
watchOptions: {
ignored: /node_modules/,
poll: true,
},
historyApiFallback: true,
},
devtool: "#eval-source-map"
});