create-young-proj 1.6.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/template-nuxt-admin/nuxt.config.ts +3 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
3
|
|
4
|
+
## v1.6.2
|
5
|
+
|
6
|
+
[compare changes](https://github.com/BluesYoung-web/create-young-proj/compare/v1.6.1...v1.6.2)
|
7
|
+
|
8
|
+
### 🩹 Fixes
|
9
|
+
|
10
|
+
- 🩹 fix element missing ([0c5cbca](https://github.com/BluesYoung-web/create-young-proj/commit/0c5cbca))
|
11
|
+
|
12
|
+
### ❤️ Contributors
|
13
|
+
|
14
|
+
- 张扬 <bluesyoung_web@163.com>
|
15
|
+
|
4
16
|
## v1.6.1
|
5
17
|
|
6
18
|
[compare changes](https://github.com/BluesYoung-web/create-young-proj/compare/v1.6.0...v1.6.1)
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
* @Author: zhangyang
|
3
3
|
* @Date: 2023-09-21 15:57:55
|
4
|
-
* @LastEditTime: 2023-
|
4
|
+
* @LastEditTime: 2023-12-22 09:31:07
|
5
5
|
* @Description:
|
6
6
|
*/
|
7
7
|
import { resolve } from 'node:path'
|
@@ -22,6 +22,8 @@ export default defineNuxtConfig({
|
|
22
22
|
{ name: 'renderer', content: 'webkit' },
|
23
23
|
{ name: 'mobile-web-app-capable', content: 'yes' },
|
24
24
|
{ name: 'creator', content: 'BluesYoung-web' },
|
25
|
+
{ 'http-equiv': 'X-UA-Compatible', 'content': 'IE=edge,chrome=1' },
|
26
|
+
{ id: 'viewportMeta', name: 'viewport', content: 'maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0' },
|
25
27
|
],
|
26
28
|
link: [
|
27
29
|
{
|