34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
## Install
|
|
|
|
```bash
|
|
# Javascript template
|
|
$ npx degit amoutonbrady/vite-template-solid/js my-solid-project
|
|
$ cd my-solid-project
|
|
$ npm install # or pnpm install or yarn install
|
|
```
|
|
|
|
```bash
|
|
# Typescript template
|
|
$ npx degit amoutonbrady/vite-template-solid/ts my-solid-project
|
|
$ cd my-solid-project
|
|
$ npm install # or pnpm install or yarn install
|
|
```
|
|
|
|
```bash
|
|
# Typescript minimal template
|
|
$ npx degit amoutonbrady/vite-template-solid/ts-minimal my-solid-project
|
|
$ cd my-solid-project
|
|
$ npm install # or pnpm install or yarn install
|
|
```
|
|
|
|
```bash
|
|
# Typescript tailwind template
|
|
$ npx degit amoutonbrady/vite-template-solid/ts-tailwind my-solid-project
|
|
$ cd my-solid-project
|
|
$ npm install # or pnpm install or yarn install
|
|
```
|
|
|
|
## Troubleshooting
|
|
|
|
It appears that Webstorm generate some weird triggers when saving a file. In order to prevent that you can follow [this thread](https://intellij-support.jetbrains.com/hc/en-us/community/posts/360000154544-I-m-having-a-huge-problem-with-Webstorm-and-react-hot-loader-) and disable the **"Safe Write"** option in **"Settings | Appearance & Behavior | System Settings"**.
|