This repository was archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.config.js
More file actions
62 lines (62 loc) · 1.42 KB
/
webpack.config.js
File metadata and controls
62 lines (62 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
61
62
module.exports = {
devtool: 'cheap-module-source-map',
entry: './index.js',
stats: {
warnings: true
},
watch: false,
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.png|img$/,
loader: 'url-loader'
},
{
test: /\.svg$/,
loader: 'url-loader?limit=65000&mimetype=image/svg+xml&name=public/fonts/[name].[ext]'
},
{
test: /\.woff$/,
loader: 'url-loader?limit=65000&mimetype=application/font-woff&name=public/fonts/[name].[ext]'
},
{
test: /\.woff2$/,
loader: 'url-loader?limit=65000&mimetype=application/font-woff2&name=public/fonts/[name].[ext]'
},
{
test: /\.[ot]tf$/,
loader: 'url-loader?limit=65000&mimetype=application/octet-stream&name=public/fonts/[name].[ext]'
},
{
test: /\.eot$/,
loader: 'url-loader?limit=65000&mimetype=application/vnd.ms-fontobject&name=public/fonts/[name].[ext]'
},
{
test: /semver\.browser\.js/,
use: ['imports?define=>undefined']
},
{
test: /\.js(x)?$/,
exclude: [/node_modules/, '/chartiq/'],
loaders: ['babel-loader?presets[]=stage-1,presets[]=react']
}
]
},
output: {
filename: './dist/index.js',
sourceMapFilename: './dist/index.js.map',
library: 'library',
libraryTarget: 'umd'
},
resolve: {
extensions: ['.js', '.jsx', '.json', 'scss']
}
};