mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Fix firefox (worked in Chrome only) sourcemaps in dev mode.
This commit is contained in:
@@ -99,9 +99,6 @@ let buildconfig = {
|
||||
name: "libs",
|
||||
filename: "libs.bundled.js"
|
||||
}),
|
||||
new webpack.SourceMapDevToolPlugin({
|
||||
filename: '[name].js.map',
|
||||
}),
|
||||
// this plugin allows using the following keys/globals in scripts (w/o req'ing them first)
|
||||
// and webpack will automagically require them in the bundle for you
|
||||
new webpack.ProvidePlugin({
|
||||
@@ -115,7 +112,7 @@ let buildconfig = {
|
||||
]
|
||||
};
|
||||
|
||||
if (process.env.GXY_BUILD_SOURCEMAPS){
|
||||
if (process.env.GXY_BUILD_SOURCEMAPS || process.env.NODE_ENV == "development"){
|
||||
buildconfig.devtool = 'source-map';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user