mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
Chore: Change dev sourcemaps to work around firefox warning (#67929)
Change dev sourcemaps to work around firefox warning
This commit is contained in:
parent
73ca4e180a
commit
b65ce6738f
@ -20,9 +20,9 @@ const esbuildOptions = {
|
||||
format: undefined,
|
||||
};
|
||||
|
||||
module.exports = (env = {}) =>
|
||||
merge(common, {
|
||||
devtool: 'inline-source-map',
|
||||
module.exports = (env = {}) => {
|
||||
return merge(common, {
|
||||
devtool: 'eval-source-map',
|
||||
mode: 'development',
|
||||
|
||||
entry: {
|
||||
@ -121,3 +121,4 @@ module.exports = (env = {}) =>
|
||||
}),
|
||||
],
|
||||
});
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user