06cf740aa3
The issue: CSS was in dist/styles/ but FoundryVTT expects module CSS at the root level or in a standard location. Changes: - Build CSS to styles/scrying-pool.css (root level) instead of dist/styles/ - Update module.json to reference styles/scrying-pool.css - Update .gitignore to track styles/scrying-pool.css - Update build script in package.json This ensures FoundryVTT can find and load the CSS file properly in live sessions. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
20 lines
210 B
Plaintext
20 lines
210 B
Plaintext
# Build output - except the compiled CSS which is required for distribution
|
|
dist/
|
|
!styles/scrying-pool.css
|
|
node_modules/
|
|
*.zip
|
|
*.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|