When rendering locally, can I enter the following command? 新人问一个关于本地渲染命令的问题

在本地渲染时,是否可以输入如下的命令?以及这样的命令顺序是否正确呢?纯新人,没有任何代码基础。感提前谢解答
hugo server -D --disableFastRender --gc --minify

When rendering locally, can I enter the following command? And is this command sequence correct? Pure newbie, no coding knowledge. Thanks for the answer in advance
hugo server -D --disableFastRender --gc --minify

It’s okay if there is no error.

没报错就行。

没有报错,我想请教,这样一个命令输入进去,清理和压缩命令是否还有效?
或者说在本地渲染,使用这样的命令是否有意义?

你是指 --gc--minify 吗?没报错一般都有效,标志的详细说明可以通过 hugo server -h 查看。
不过我一般不用在本地使用 --minify,只在生产环境使用,可以有效减少网页传输大小,以提高速度。

谢谢您的答复。