Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F162693
webpack.dev.conf.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
webpack.dev.conf.js
View Options
var
config
=
require
(
'../config'
)
var
webpack
=
require
(
'webpack'
)
var
merge
=
require
(
'webpack-merge'
)
var
utils
=
require
(
'./utils'
)
var
baseWebpackConfig
=
require
(
'./webpack.base.conf'
)
var
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
// add hot-reload related code to entry chunks
Object
.
keys
(
baseWebpackConfig
.
entry
).
forEach
(
function
(
name
)
{
baseWebpackConfig
.
entry
[
name
]
=
[
'./build/dev-client'
].
concat
(
baseWebpackConfig
.
entry
[
name
])
})
module
.
exports
=
merge
(
baseWebpackConfig
,
{
module
:
{
rules
:
utils
.
styleLoaders
({
sourceMap
:
config
.
dev
.
cssSourceMap
})
},
mode
:
'development'
,
// eval-source-map is faster for development
devtool
:
'eval-source-map'
,
plugins
:
[
new
webpack
.
DefinePlugin
({
'process.env'
:
config
.
dev
.
env
,
'COMMIT_HASH'
:
JSON
.
stringify
(
'DEV'
),
'DEV_OVERRIDES'
:
JSON
.
stringify
(
config
.
dev
.
settings
),
'__VUE_OPTIONS_API__'
:
true
,
'__VUE_PROD_DEVTOOLS__'
:
false
,
'__VUE_PROD_HYDRATION_MISMATCH_DETAILS__'
:
false
}),
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new
webpack
.
HotModuleReplacementPlugin
(),
// https://github.com/ampedandwired/html-webpack-plugin
new
HtmlWebpackPlugin
({
filename
:
'index.html'
,
template
:
'index.html'
,
inject
:
true
})
]
})
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Feb 21, 5:39 PM (13 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
66771
Default Alt Text
webpack.dev.conf.js (1 KB)
Attached To
Mode
rPUFE pleroma-fe-upstream
Attached
Detach File
Event Timeline
Log In to Comment