mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 14:52:16 +08:00
Webpack: Fix accidental double typechecking (#18881)
This commit is contained in:
@ -69,7 +69,7 @@ module.exports = (env = {}) =>
|
||||
checkSyntacticErrors: true,
|
||||
}),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: "grafana.[name].[hash].css"
|
||||
filename: 'grafana.[name].[hash].css'
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
filename: path.resolve(__dirname, '../../public/views/error.html'),
|
||||
@ -89,7 +89,7 @@ module.exports = (env = {}) =>
|
||||
new webpack.HotModuleReplacementPlugin(),
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': {
|
||||
'NODE_ENV': JSON.stringify('development')
|
||||
NODE_ENV: JSON.stringify('development')
|
||||
}
|
||||
}),
|
||||
// new BundleAnalyzerPlugin({
|
||||
|
Reference in New Issue
Block a user