-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.demo.js
More file actions
51 lines (50 loc) · 1.02 KB
/
webpack.config.demo.js
File metadata and controls
51 lines (50 loc) · 1.02 KB
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
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
mode: "development",
devtool: "cheap-module-source-map",
entry: "./src/demo/index.ts",
output: {
filename: "index.js",
},
optimization: {
minimize: false,
},
devServer: {
open: true,
hot: true,
host: "localhost",
port: 9000,
},
module: {
rules: [
{
test: /\.html$/i,
loader: "raw-loader",
},
{
test: /\.(m|j|t)s$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: "babel-loader",
},
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
{ loader: "css-loader", options: { sourceMap: true } },
],
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: "css/index.css",
}),
new HtmlWebpackPlugin(),
],
resolve: {
extensions: [".ts", ".js", ".json"],
},
};