6 lines
209 B
Plaintext
6 lines
209 B
Plaintext
fetch('/assets/scripts/version.txt')
|
|
.then(response => response.text())
|
|
.then(version =>
|
|
console.log(`%c VERZIÓ: ${version}`, 'color: white; background: darkgreen; display: block; padding: 2px')
|
|
);
|