Move the CSS into a path-versioned location

This commit is contained in:
Oliver-Akins 2024-04-07 23:08:41 -06:00
parent 1558468526
commit 1c372415f4
2 changed files with 20 additions and 6 deletions

View file

@ -66,7 +66,7 @@ export class DotDungeonIncrementer extends HTMLElement {
connectedCallback() {
if (!DotDungeonIncrementer.styles) {
fetch(`./systems/dotdungeon/.styles/components/incrementer.css`)
fetch(`./systems/dotdungeon/.styles/v3/components/incrementer.css`)
.then(r => r.text())
.then(t => {
DotDungeonIncrementer.styles = t;