update docs urls

master
Brad Cornes 2020-11-27 17:05:58 +00:00
parent a4fdd949be
commit 4f0e415df7
1 changed files with 5 additions and 1 deletions

View File

@ -2,9 +2,13 @@ import semver from 'semver'
export function docsUrl(version: string, paths: string | string[]): string {
let major = 0
let url = 'https://v0.tailwindcss.com/docs/'
let url = 'https://tailwindcss-v0.netlify.app/docs/'
if (semver.gte(version, '0.99.0')) {
major = 1
url = 'https://v1.tailwindcss.com/docs/'
}
if (semver.gte(version, '1.99.0')) {
major = 2
url = 'https://tailwindcss.com/docs/'
}
const path = Array.isArray(paths)