mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-15 05:44:05 +00:00
44 lines
409 B
Markdown
44 lines
409 B
Markdown
# Laconic
|
|
|
|
Repository for `Laconic`'s website. It is currently hosted on Vercel. To build it locally:
|
|
|
|
## Install yarn
|
|
e.g,:
|
|
|
|
```
|
|
npm install -g yarn
|
|
```
|
|
|
|
## Set env
|
|
|
|
```
|
|
export NEXT_PUBLIC_DATOCMS_BYPASS_TYPE="local_json"
|
|
```
|
|
|
|
## Install the dependencies:
|
|
|
|
```
|
|
yarn
|
|
```
|
|
|
|
### Development
|
|
|
|
```
|
|
yarn dev
|
|
```
|
|
|
|
### Production
|
|
|
|
```
|
|
yarn build
|
|
yarn start
|
|
```
|
|
|
|
### Static build
|
|
|
|
```
|
|
yarn export
|
|
```
|
|
|
|
creates `./out`
|