-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwebpack.config.js
84 lines (82 loc) · 2.25 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
83
84
import HtmlWebpackPlugin from "html-webpack-plugin";
import loader, { VueLoaderPlugin } from "vue-loader";
import pkg from "webpack";
const { DefinePlugin } = pkg;
import configKeybinds from "./config/custom-keybinds.json" with { type: "json" };
import configNGExtend from "./config/ng-extend.json" with { type: "json" };
import configStateServers from "./config/state_servers.json" with { type: "json" };
export default {
entry: "./src/main.ts",
mode: "development",
devtool: "source-map",
performance: {
// Avoid unhelpful warnings due to large bundles.
maxAssetSize: 3 * 1024 * 1024,
maxEntrypointSize: 3 * 1024 * 1024,
},
module: {
rules: [
{
test: /\.vue$/,
loader: "vue-loader",
},
// Needed to support Neuroglancer TypeScript sources when using
// Neuroglancer source package directly.
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
appendTsSuffixTo: [/\.vue$/]
},
},
// Needed for .svg?raw imports used for embedding icons.
{
resourceQuery: /raw/,
type: "asset/source",
},
// Needed for .html assets used for auth redirect pages for the brainmaps
// and bossDB data sources. Can be skipped if those data sources are
// excluded.
{
test: /\.html$/,
type: "asset/resource",
generator: {
// Filename must be preserved since exact redirect URLs must be allowlisted.
filename: "[name][ext]",
},
},
// Necessary to handle CSS files.
{
test: /\.css$/,
use: [{ loader: "style-loader" }, { loader: "css-loader" }],
},
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: "file-loader",
},
],
},
],
},
devServer: {
client: {
overlay: {
// Prevent intrusive notification spam.
runtimeErrors: false,
},
},
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.tpl',
}),
new VueLoaderPlugin(),
new DefinePlugin({
CONFIG: JSON.stringify(configNGExtend),
STATE_SERVERS: JSON.stringify(configStateServers),
CUSTOM_BINDINGS: JSON.stringify(configKeybinds),
}),
],
};