This repository has been archived by the owner on Jun 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arturo Enriquez
committed
Feb 9, 2021
1 parent
038615f
commit 9caa4a2
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# WP Tailwind | Simple Wordpress Theme Setup & Install | ||
|
||
This is a simple theme for WordPress using [TailwindCSS](https://tailwindcss.com/), with [PostCSS](https://postcss.org) and [Laravel Mix](https://laravel-mix.com/). | ||
|
||
## Install | ||
|
||
clone repo into the wordpress themes directory `/wp-content/themes/` | ||
|
||
```sh | ||
npm i | ||
``` | ||
|
||
## Env | ||
|
||
```sh | ||
# WordPress App Host | ||
MIX_APP_HOST=localhost:8000 | ||
``` | ||
|
||
## NPM Scripts | ||
|
||
```sh | ||
# Build for Dev | ||
npm run dev | ||
# Browser Sync | ||
npm run watch | ||
|
||
# Build for Production | ||
npm run prod | ||
``` |