FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
hackmcgill/webpack.dev.js at develop · hackmcgill/hackmcgill · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
hackmcgill
/
hackmcgill
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
3
Code
Issues
0
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
hackmcgill
/
webpack.dev.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
11 lines (10 loc) · 266 Bytes
Breadcrumbs
hackmcgill
/
webpack.dev.js
Copy path
File metadata and controls
11 lines (10 loc) · 266 Bytes
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
const
merge
=
require
(
'webpack-merge'
)
;
const
common
=
require
(
'./webpack.common.js'
)
;
const
path
=
require
(
'path'
)
;
module
.
exports
=
merge
(
common
,
{
devServer
:
{
contentBase
:
path
.
join
(
__dirname
,
'dist'
)
,
watchContentBase
:
true
,
port
:
9000
,
}
,
}
)
;
Back
|
FazBrowse Home
|
New Git URL