-
-
Notifications
You must be signed in to change notification settings - Fork 385
/
Copy pathconfig.js
85 lines (83 loc) · 2.18 KB
/
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
85
const path = require('path');
/* eslint-disable no-template-curly-in-string */
/* eslint-disable no-useless-escape */
module.exports = {
baseUrl: '/vtk-js',
work: './build-tmp',
api: ['../Sources'],
examples: [{ path: '../Examples', regexp: 'index.js' }, '../Sources'],
config: {
title: 'vtk.js',
description: '"Visualization Toolkit for the Web."',
subtitle: '"Enable scientific visualization to the Web."',
author: 'Kitware Inc.',
timezone: 'UTC',
url: 'https://kitware.github.io/vtk-js',
root: '/vtk-js/',
github: 'kitware/vtk-js',
google_analytics: 'UA-90338862-1',
google_analytics_4: 'G-5XH2Z0Y9LQ',
},
parallelWebpack: {
maxConcurrentWorkers: 2,
rootPath: path.resolve(path.join(__dirname, '..')),
templatePath: path.resolve(
path.join(__dirname, '../Utilities/ExampleRunner/template.html')
),
output: {
publicPath: '',
},
plugins: [],
rules: [
`
{
test: /\\.js$/,
exclude: /dist\\/esm/,
use: [
{
loader: 'babel-loader?cacheDirectory',
},
],
},
{
test: /\.css$/,
exclude: /\.module\.css$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'postcss-loader' },
],
},
{
test: /\.module\.css$/,
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[name]-[local]_[sha512:hash:base64:5]',
},
},
},
{ loader: 'postcss-loader' },
],
},
{
test: /\\.svg$/,
type: 'asset/source',
},
{ test: /\\.(png|jpg)$/, type: 'asset' },
{ test: /\\.html$/, loader: 'html-loader' },
{ test: /\\.cjson$/, loader: 'hson-loader' },
{ test: /\\.hson$/, loader: 'hson-loader' },
`,
],
alias: [
"'vtk.js/Sources': `${rootPath}/dist/esm`,",
"'@kitware/vtk.js': `${rootPath}/dist/esm`,",
"'vtk.js': `${rootPath}`,",
],
},
copy: [{ src: '../Data/*', dest: './build-tmp/public/data' }],
};