⚜️ 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%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2022-08-20 12:50:53 +02:00
public Update ManyVids with 18+ note 2022-08-20 12:50:53 +02:00
src/css Update src and build for new release 2021-07-04 10:57:09 +02:00
.gitignore Update .gitignore to exclude .idea directory 2021-12-01 11:10:48 +01:00
LICENSE Initial commit 2021-07-02 09:31:52 +02:00
package-lock.json Add Tailwind CSS as module, update config 2021-07-04 10:56:31 +02:00
package.json Add Tailwind CSS as module, update config 2021-07-04 10:56:31 +02:00
README.md Add a README.md file 2021-07-04 11:23:34 +02:00
tailwind.config.js Add Tailwind CSS as module, update config 2021-07-04 10:56:31 +02:00

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