打包: npm run build:prod 复制粘贴:(当然,也可以前后台分开部署。) ## 如果用vue-element-admin 也可以加一个这个连自己的后台 @
{ template: 'D:/EVDownload/adminMPA/src/views/page/page.html', templateContent: false, templateParameters: [Object], filename: 'page.html', hash: false, inject: true, compile: true, favicon: false, minify: false, cache: true, showErrors: true, chunks: [Array], excludeChunks: [], ...
//打包后,可能会发现index.html入口文件中,js、css引入路径不对, 需在打包前修改 vue.config.js 文件中publicPath的值publicPath: './'//说明:“./”指当前目录,即打包后入口文件index.html的同级目录 部署 服务器为nginx环境 #在http模块下,新增一个server模块 server{ listen80; server_name localhost; index...
vue-admin-template打包部署及跳过登录验证 技术标签: vue 1、修改vue.config.js 将publicPath的值改为’./’(设置打包后的静态资源为相对路径,避免加载不到css、js导致页面白屏) outputDir:打包后的文件夹名 assetsDir:打包后的静态资源文件夹名 2、三个文件中的VUE_APP_BASE_API改为自己的请求地址 3、修改登...
['pagetwo'], //打包时只打包main和a的js文件,见entry,注意使用chunks时模板index.html文件里面不允许有script标签,即使注释掉也会报错templateParameters: {BASE_URL: config.dev.assetsPublicPath + config.dev.assetsSubDirectory}}),/* 在这结束插入代码***/new webpack.NamedModulesPlugin(), // HMR shows...