f36f69082d
Deletes the generated CSS file from the repository. Adds the compiled CSS file to the .gitignore file, preventing it from being tracked. This improves repository cleanliness by excluding automatically generated assets.
66 lines
787 B
Plaintext
66 lines
787 B
Plaintext
# System files
|
|
# ------------
|
|
|
|
Icon
|
|
.DS_Store
|
|
|
|
# Temporary files
|
|
# ---------------
|
|
|
|
/media/*
|
|
!/media/index.html
|
|
|
|
# Lock files
|
|
# ---------------
|
|
|
|
.lock
|
|
|
|
# Editors
|
|
# (sensitive workspace files)
|
|
# ---------------------------
|
|
*.sublime-workspace
|
|
/.vscode
|
|
/.idea
|
|
|
|
# -------------SECURITY-------------
|
|
# NEVER publish these files via Git!
|
|
# -------------SECURITY-------------
|
|
|
|
# Cache Files
|
|
# ---------------
|
|
|
|
/site/cache/*
|
|
!/site/cache/index.html
|
|
|
|
# Accounts
|
|
# ---------------
|
|
|
|
/site/accounts/*
|
|
!/site/accounts/index.html
|
|
|
|
# Sessions
|
|
# ---------------
|
|
|
|
/site/sessions/*
|
|
!/site/sessions/index.html
|
|
|
|
# License
|
|
# ---------------
|
|
|
|
/site/config/.license
|
|
|
|
# Kirby
|
|
# ---------------
|
|
|
|
/kirby
|
|
/media
|
|
/vendor
|
|
|
|
# Node
|
|
# ---------------
|
|
/node_modules
|
|
|
|
# CSS files
|
|
# ---------------
|
|
assets/css/styles.css
|