gpt4 book ai didi

webpack - 为什么 JSON.stringify ('production' )?

转载 作者:行者123 更新时间:2023-12-04 15:39:26 24 4
gpt4 key购买 nike

Webpack Production Documentation ,一个建议是使用 process.env.NODE_ENV 的配置变量实例化对象,使用以下推荐代码:

+     new webpack.DefinePlugin({
+ 'process.env.NODE_ENV': JSON.stringify('production')
+ })

为什么 JSON.stringify('production')而不仅仅是 'production' ?

最佳答案

在 webpack 文档的其他地方找到了答案。

根据 the define-plugin docs ,您必须提供一个嵌入了引号的字符串。

T> Note that because the plugin does a direct text replacement, the value given to it must include actual quotes inside of the string itself. Typically, this is done either with either alternate quotes, such as '"production"', or by using JSON.stringify('production').



感谢 TheIncorrigible1 的周一玩笑。

关于webpack - 为什么 JSON.stringify ('production' )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50454341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com