vite/playground/css/async-treeshaken.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
239 B
JavaScript
Raw Normal View History

2020-12-30 23:47:35 +00:00
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)