mirror of
				https://github.com/nsnail/NetAdmin.git
				synced 2025-10-31 11:25:27 +08:00 
			
		
		
		
	fix: 🐛 tinymce editor css 加载路径错误 (#93)
This commit is contained in:
		| @@ -38,7 +38,7 @@ public static class IApplicationBuilderExtensions | ||||
|     private static async Task UseVueAdminAsync(HttpContext context, Func<Task> next) | ||||
|     { | ||||
|         if (!context.Request.Path.StartsWithSegments(new PathString("/api"))) { | ||||
|             var path = context.Request.Path.Value; | ||||
|             var path = context.Request.Path.Value?.Replace("-", "_"); | ||||
|             if (path == "/" || path?.Length == 0) { | ||||
|                 path = _INDEX_HTML_PATH; | ||||
|             } | ||||
|   | ||||
| @@ -12,7 +12,7 @@ | ||||
|             <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||||
|         </None> | ||||
|     </ItemGroup> | ||||
|     <ItemGroup> | ||||
|     <ItemGroup Condition="'$(Configuration)' != 'Debug'"> | ||||
|         <EmbeddedResource Include="../../../dist/frontend/admin/**/*" LinkBase="UI"/> | ||||
|     </ItemGroup> | ||||
| </Project> | ||||
| @@ -16,8 +16,8 @@ | ||||
|         "core-js": "^3.36.0", | ||||
|         "cropperjs": "^1.6.1", | ||||
|         "crypto-js": "^4.2.0", | ||||
|         "echarts": "^5.4.3", | ||||
|         "element-plus": "^2.5.5", | ||||
|         "echarts": "^5.5.0", | ||||
|         "element-plus": "^2.5.6", | ||||
|         "json-bigint": "^1.0.0", | ||||
|         "json5-to-table": "^0.1.8", | ||||
|         "nprogress": "^0.2.0", | ||||
| @@ -25,22 +25,22 @@ | ||||
|         "qrcodejs2": "^0.0.2", | ||||
|         "sortablejs": "^1.15.2", | ||||
|         "tinymce": "^6.8.3", | ||||
|         "vue": "^3.4.19", | ||||
|         "vue": "^3.4.20", | ||||
|         "vue-i18n": "^9.9.1", | ||||
|         "vue-router": "^4.2.5", | ||||
|         "vue-router": "^4.3.0", | ||||
|         "vue3-json-viewer": "^2.2.2", | ||||
|         "vuedraggable": "^4.0.3", | ||||
|         "vuex": "^4.1.0", | ||||
|         "xgplayer": "^3.0.12", | ||||
|         "xgplayer-hls": "^3.0.12" | ||||
|         "xgplayer": "^3.0.13", | ||||
|         "xgplayer-hls": "^3.0.13" | ||||
|     }, | ||||
|     "devDependencies": { | ||||
|         "@vitejs/plugin-vue": "^5.0.4", | ||||
|         "prettier": "^3.2.5", | ||||
|         "prettier-plugin-organize-attributes": "^1.0.0", | ||||
|         "sass": "^1.71.0", | ||||
|         "terser": "^5.27.1", | ||||
|         "vite": "^5.1.3" | ||||
|         "sass": "^1.71.1", | ||||
|         "terser": "^5.28.1", | ||||
|         "vite": "^5.1.4" | ||||
|     }, | ||||
|     "browserslist": [ | ||||
|         "> 1%", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 GitHub
						GitHub