-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (40 loc) · 990 Bytes
/
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
const path = require("path");
const webpack = require("webpack");
module.exports = {
entry: "./src/index.js",
optimization: {
minimize: true
},
target: "webworker",
output: {
filename: "index.js",
path: path.resolve(__dirname, "bin"),
libraryTarget: "this",
},
module: {
// Asset modules are modules that allow the use asset files (fonts, icons, etc)
// without additional configuration or dependencies.
rules: [
// asset/source exports the source code of the asset.
// Usage: e.g., import notFoundPage from "./page_404.html"
{
test: /\.(txt|html)/,
type: "asset/source",
},
],
},
plugins: [
// Polyfills go here.
// Used for, e.g., any cross-platform WHATWG,
// or core nodejs modules needed for your application.
new webpack.ProvidePlugin({
URL: "core-js/web/url",
}),
],
// Redirecting module requests
resolve: {
fallback: {
fs: false,
},
},
};