forked from tilk/digitaljs_online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
83 lines (80 loc) · 2.79 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 HtmlWebpackPlugin = require("html-webpack-plugin");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackInlineSVGPlugin = require('html-webpack-inline-svg-plugin');
const outputDirectory = "dist";
module.exports = (env, argv) => {
const devMode = argv.mode !== "production";
return {
entry: "./src/client/index.js",
devtool: "source-map",
output: {
path: path.join(__dirname, outputDirectory),
filename: "bundle.js"
},
module: {
rules: [
{
test: /\.mjs/,
use: {
loader: "babel-loader",
options: {
plugins: [
"@babel/plugin-proposal-class-properties"
]
}
}
},
{
test: /\.css$/,
use: [devMode ? "style-loader" : MiniCssExtractPlugin.loader, "css-loader"]
},
{
test: /\.scss$/,
use: [devMode ? "style-loader" : MiniCssExtractPlugin.loader, "css-loader", "sass-loader"]
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
type: 'asset'
},
{
test: require.resolve('jquery'),
loader: 'expose-loader',
options: {
exposes: ['$']
}
},
{
test: /\.svg$/,
type: "asset/inline",
// Inline assets with the "inline" query parameter.
resourceQuery: /inline/,
},
]
},
devServer: {
port: 3000,
open: true,
proxy: {
"/api": "http://localhost:8080"
}
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: "./public/index.html",
inject: 'head'
// favicon: "./public/favicon.ico"
}),
new HtmlWebpackInlineSVGPlugin(),
new CopyWebpackPlugin({
patterns: [
{ from: 'public/*.+(ico|png|svg|webmanifest)', to: '[name][ext]' },
{ from: 'node_modules/yosys2digitaljs/tests/*.sv', to: 'examples/[name][ext]' }
]
})
].concat(devMode ? [] : [new MiniCssExtractPlugin()]),
};
};