⚜️ This is the repo for the website of Kylie Marilyn.
https://kyliemarilyn.com
- CSS 46.9%
- PHP 40.9%
- HTML 6.6%
- JavaScript 5.6%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
|
||
| public | ||
| src/css | ||
| .gitignore | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tailwind.config.js | ||
Kylie Marilyn Website
That is the static website for Miss Kylie Marilyn. It is powered by pure HTML and Tailwind CSS. The index is a PHP file so that I can have a dynamic year in the copyright.
Installation
Do the normal npm install to install dependencies. See the Tailwind CSS documentation for details.
Run dev watch
npx tailwindcss \
-i ./src/css/styles.css \
-o public/build/styles.css \
--jit \
--purge="./public/**/*.php" \
--watch
Run production build
NODE_ENV=production \
npx tailwindcss \
-i ./src/css/styles.css \
-o public/build/styles.css \
--jit \
--purge="./public/**/*.php" \
--minify