ViteAppResource Constructors
Class Constructors 1 member
Represents a Vite application resource that can be managed and executed within a Node.js environment.
Constructor(string, string, string) Section titled Constructor(string, string, string) Represents a Vite application resource that can be managed and executed within a Node.js environment.
public class ViteAppResource{ public ViteAppResource( string name, string command, string workingDirectory) { // ... }}Parameters
name string The unique name used to identify the Vite application resource. command string The command to execute the Vite application, such as the script or entry point. workingDirectory string The working directory from which the Vite application command is executed.