Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
#76 Implements framework support for deployment - Simple Javascript…
Browse files Browse the repository at this point in the history
… App, Vue
  • Loading branch information
rekpero committed Oct 21, 2020
1 parent c6aea97 commit 8c30b0b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/DeploySiteConfig/DeploySiteConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function DeploySiteConfig() {
const [projectName, setProjectName] = useState<string>("");
const [owner, setOwner] = useState<any>();
const [branch, setBranch] = useState<string>("master");
const [framework, setFramework] = useState<string>("Create React App");
const [framework, setFramework] = useState<string>("react");
const [packageManager, setPackageManager] = useState<string>("npm");
const [buildCommand, setBuildCommand] = useState<string>("");
const [publishDirectory, setPublishDirectory] = useState<string>("");
Expand Down Expand Up @@ -468,9 +468,11 @@ function DeploySiteConfig() {
value={framework}
onChange={(e) => setFramework(e.target.value)}
>
<option value="Create React App">
Create React App
<option value="static">
No Framework - Simple JavaScript App
</option>
<option value="react">Create React App</option>
<option value="vue">Vue App</option>
</select>
<span className="select-down-icon">
<FontAwesomeIcon icon={faChevronDown} />
Expand Down

0 comments on commit 8c30b0b

Please sign in to comment.