Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI changes #128

Merged
merged 24 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/overview/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ It is possible to customize this process with _Advanced Build Options_:
- at the time of first deployment, in the _Advanced_ dropdown
- <img src="/img/build-options/advancedWNode.png" width="350px"/>
- in _Environments_ tab > _Build Options_ of an app's dashboard
- <img src="/img/build-options/buildwithnode2.png" width="650px"/>
- <img src="/img/build-options/buildwithnode2.png" width="350px"/>

#### **Root Path**
The root path specifies which directory Cyclic will run build scripts.
Expand Down Expand Up @@ -113,7 +113,7 @@ This video will give you an example of how to deploy a static site without a bac

#### **Runtime**
Newly deployed Cyclic apps will use Node.js v18.12.1 by default. If you are using a framework or library that requires an older version of Node.js to function properly, you may adjust it here.
<img src="/img/build-options/runtime.png" width="350px"/>
<img src="/img/build-options/runtime.png" width="500px"/>



94 changes: 52 additions & 42 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ const config = {
projectName: 'docs', // Usually your repo name.
trailingSlash: false, // https://docusaurus.io/docs/deployment#deploying-to-github-pages
plugins: [
async function myPlugin(context, options) {
return {
name: 'docusaurus-tailwindcss',
configurePostCss(postcssOptions) {
postcssOptions.plugins.push(require('tailwindcss'))
postcssOptions.plugins.push(require('autoprefixer'))
return postcssOptions
}
}
},
require.resolve('docusaurus-lunr-search'),
'./src/plugins/analytics/index.js',
[
Expand Down Expand Up @@ -76,7 +86,7 @@ const config = {
style: 'dark',
logo: {
alt: 'Cyclic Logo',
src: 'img/logo-light.png',
src: 'img/cyclic-logo.svg',
href: 'https://app.cyclic.sh/',
target: '_self',
},
Expand All @@ -100,47 +110,47 @@ const config = {

],
},
footer: {
style: 'dark',
links: [
{
title: 'Cyclic',
items: [
{
label: 'Home - www.cyclic.sh',
href: 'https://www.cyclic.sh/',
},
{
label: 'App - app.cyclic.sh',
href: 'https://app.cyclic.sh/',
},
],
},
{
title: 'Community',
items: [
{
label: 'Discord',
href: 'https://discord.gg/huhcqxXCbE',
},
{
label: 'Twitter',
href: 'https://twitter.com/cyclicsoftware',
},
],
},
{
title: 'More',
items: [
{
label: 'GitHub',
href: 'https://github.com/cyclic-software/docs',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Cyclic Software, Inc.`,
},
// footer: {
// style: 'dark',
// links: [
// {
// title: 'Cyclic',
// items: [
// {
// label: 'Home - www.cyclic.sh',
// href: 'https://www.cyclic.sh/',
// },
// {
// label: 'App - app.cyclic.sh',
// href: 'https://app.cyclic.sh/',
// },
// ],
// },
// {
// title: 'Community',
// items: [
// {
// label: 'Discord',
// href: 'https://discord.gg/huhcqxXCbE',
// },
// {
// label: 'Twitter',
// href: 'https://twitter.com/cyclicsoftware',
// },
// ],
// },
// {
// title: 'More',
// items: [
// {
// label: 'GitHub',
// href: 'https://github.com/cyclic-software/docs',
// },
// ],
// },
// ],
// copyright: `Copyright © ${new Date().getFullYear()} Cyclic Software, Inc.`,
// },
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
Expand Down
Loading
Loading