FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gitalk/webpack.config.js at master · gitalk/gitalk · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
gitalk
/
gitalk
Public
Notifications
You must be signed in to change notification settings
Fork
618
Star
7.2k
Code
Issues
145
Pull requests
10
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
gitalk
/
webpack.config.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
97 lines (87 loc) · 2.12 KB
Breadcrumbs
gitalk
/
webpack.config.js
Copy path
File metadata and controls
97 lines (87 loc) · 2.12 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
86
87
88
89
90
91
92
93
94
95
96
97
const
path
=
require
(
'path'
)
const
webpack
=
require
(
'webpack'
)
const
autoprefixer
=
require
(
'autoprefixer'
)
const
ExtractTextPlugin
=
require
(
'extract-text-webpack-plugin'
)
const
ENV
=
process
.
env
.
NODE_ENV
||
'development'
const
isDev
=
ENV
!==
'production'
const
cssLoader
=
[
{
loader
:
'css-loader'
}
,
{
loader
:
'postcss-loader'
,
options
:
{
sourceMap
:
true
,
plugins
:
[
autoprefixer
(
{
browsers
:
[
'last 2 versions'
]
}
)
]
}
}
]
const
stylLoader
=
{
loader
:
'stylus-loader'
}
const
plugins
=
[
new
webpack
.
DefinePlugin
(
{
VERSION
:
JSON
.
stringify
(
require
(
'./package.json'
)
.
version
)
}
)
]
module
.
exports
=
{
context
:
path
.
resolve
(
__dirname
,
'src'
)
,
entry
:
'./index.js'
,
output
:
{
path
:
path
.
resolve
(
__dirname
,
'dist'
)
,
publicPath
:
'/dist'
,
filename
:
'gitalk.js'
,
libraryTarget
:
'umd'
,
library
:
'Gitalk'
}
,
resolve
:
{
extensions
:
[
'.jsx'
,
'.js'
,
'.json'
]
,
alias
:
{
'react'
:
'preact-compat'
,
'react-dom'
:
'preact-compat'
}
}
,
module
:
{
rules
:
[
{
test
:
/
\.
j
s
x
?
$
/
,
exclude
:
/
n
o
d
e
_
m
o
d
u
l
e
s
/
,
use
:
'babel-loader'
}
,
{
test
:
/
\.
c
s
s
$
/
,
use
:
isDev
?
[
'style-loader'
]
.
concat
(
cssLoader
)
:
ExtractTextPlugin
.
extract
(
{
fallback
:
'style-loader'
,
use
:
cssLoader
}
)
}
,
{
test
:
/
\.
s
t
y
l
$
/
,
use
:
isDev
?
[
'style-loader'
]
.
concat
(
cssLoader
,
stylLoader
)
:
ExtractTextPlugin
.
extract
(
{
fallback
:
'style-loader'
,
use
:
cssLoader
.
concat
(
stylLoader
)
}
)
}
,
{
test
:
/
\.
(
s
v
g
|
w
o
f
f
2
?
|
t
t
f
|
e
o
t
|
j
p
e
?
g
|
p
n
g
|
g
i
f
)
(
\?
.
*
)
?
$
/
i
,
use
:
[
{
loader
:
'url-loader'
,
options
:
{
limit
:
1024
*
10
}
}
]
}
]
}
,
plugins
:
isDev
?
[
...
plugins
,
new
webpack
.
NoEmitOnErrorsPlugin
(
)
]
:
[
...
plugins
,
new
ExtractTextPlugin
(
'gitalk.css'
)
]
,
devtool
:
isDev
?
'cheap-module-source-map'
:
'source-map'
,
devServer
:
{
port
:
process
.
env
.
PORT
||
8010
,
host
:
'localhost'
,
// publicPath: '/dist',
contentBase
:
'./dev'
,
// historyApiFallback: true,
// open: true
}
}
Back
|
FazBrowse Home
|
New Git URL