mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
import './async.css'
|
|
|
|
const div = document.createElement('div')
|
|
div.className = 'async'
|
|
document.body.appendChild(div)
|
|
div.textContent = `async chunk (this should be teal) ${
|
|
getComputedStyle(div).color
|
|
}`
|