create-vitrify 0.3.3 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/quasar/index.html +17 -0
- package/templates/quasar/package.json.hbs +3 -1
- package/templates/quasar-monorepo/packages/quasar/index.html +17 -0
- package/templates/quasar-monorepo/packages/quasar/package.json.hbs +3 -1
- package/templates/quasar-monorepo/packages/quasar-plugin/package.json.hbs +2 -1
- package/templates/quasar-plugin/package.json.hbs +2 -1
package/package.json
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8" />
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6
|
+
<title><!--product-name--></title>
|
7
|
+
<!--preload-links-->
|
8
|
+
</head>
|
9
|
+
|
10
|
+
<body>
|
11
|
+
<!-- Do not add whitespace or newlines to #app, this will cause hydration errors -->
|
12
|
+
<div id="app"><!--app-html--></div>
|
13
|
+
<!--dev-ssr-css-->
|
14
|
+
<!--entry-script-->
|
15
|
+
<!--initial-state-->
|
16
|
+
</body>
|
17
|
+
</html>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8" />
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6
|
+
<title><!--product-name--></title>
|
7
|
+
<!--preload-links-->
|
8
|
+
</head>
|
9
|
+
|
10
|
+
<body>
|
11
|
+
<!-- Do not add whitespace or newlines to #app, this will cause hydration errors -->
|
12
|
+
<div id="app"><!--app-html--></div>
|
13
|
+
<!--dev-ssr-css-->
|
14
|
+
<!--entry-script-->
|
15
|
+
<!--initial-state-->
|
16
|
+
</body>
|
17
|
+
</html>
|