mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
import './async-treeshaken.css'
|
|
|
|
const div = document.createElement('div')
|
|
div.className = 'async-treeshaken'
|
|
div.textContent =
|
|
'async treeshaken chunk (this should be plum and should not show up in prod)'
|
|
document.body.appendChild(div)
|