摘要:
根目录创建 hosting.json { "urls": "http://*:8081" } Program.cs public static void Main(string[] args) { // 生成承载 web 应用程序的 Microsoft.AspNetCore.Hosting.IWeb 阅读全文
摘要:
使用公用的 cdn index.html <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> <!-- cdn 加速,减小 vendor.js 体积 --> <script src 阅读全文
摘要:
Vue 项目发布流程 linux版 一、通过node创建 Web 服务器 创建node项目,并安装express,通过express快速创建web服务器,并将vue打包生成dist文件夹,托管为静态资源 主要代码如下: const express = require('express') //创建w 阅读全文