# create-next-app-ts

### It automatically builds a nextjs, typescript, and eslint working environment. This package helps the following people:

-   People who want to run a Nextjs development environment with eslint, Prettier, and styled-components
-   People who need a CRA with nextjs, typescript, yarn, etc
-   People who want to start a project with airbnb convention (eslint, prettier)
-   People who do not want to install additional packages when collaborating with yarn berry's zero-install

<br />

## Create-nextjs-project

```
$ npx create-next-app-ts your-app-name
```

## Check installation

```
$ yarn
```

## Development environment

```
$ yarn dev
```

## Deploy environment

```
$ yarn build
```

## Export static files

```
$ yarn export
```

## Check lint error

```
$ yarn lint:fix
```
