mirror of
https://github.com/preactjs/wmr.git
synced 2026-01-25 15:08:00 +00:00
* introduce @wmr/ls-plugin * Update package.json * rename and fix some stuff * rename plugin * cleanup * rename to directory-plugin * rename to directory: * reflect in example * rename to wmr-plugins * rename namespace * Update packages/directory-plugin/README.md Co-authored-by: Marvin Hagemeister <hello@marvinh.dev> * Update packages/directory-plugin/src/index.js Co-authored-by: Marvin Hagemeister <hello@marvinh.dev> * cleanup * avoid caching prefixed files * rename to dir * rename import name * remove log * make lines consistent in source * make lines consistent in json Co-authored-by: Marvin Hagemeister <hello@marvinh.dev>
17 lines
350 B
HTML
17 lines
350 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>WMR Demo</title>
|
|
<meta name="description" content="WMR Demo">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link rel="preload" as="script" href="/index.js" crossorigin>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module" src="/index.js"></script>
|
|
</body>
|
|
|
|
</html>
|