# vue-elementplus-vite-template **Repository Path**: star-sc/vue-elementplus-vite-template ## Basic Information - **Project Name**: vue-elementplus-vite-template - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-01 - **Last Updated**: 2025-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-elementPlus-vite-template ## Project Setup ```sh npm install ``` or ``` npm install pnpm ``` ``` pnpm install ``` ### Compile and Hot-Reload for Development ```sh npm run dev ``` ### Type-Check, Compile and Minify for Production ```sh npm run build ``` # Nginx 部署配置 ``` server { listen 86 ssl; listen [::]:86 ssl; server_name localhost; ssl_certificate /etc/nginx/conf.d/cert/taiking.crt; ssl_certificate_key /etc/nginx/conf.d/cert/taiking.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; #ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; location / { root /usr/share/nginx/html/fr/planOrder; index index.html; try_files $uri $uri/ /index.html; # 关键配置:所有路径都指向 index.html } } ```