Vue项目webpack打包部署到服务器

http://blog.csdn.net/Dear_Mr/article/details/72871919?locationNum=5&fps=1javascript

 

Vue项目webpack打包部署到服务器

这篇博文主要说的就是我今天遇到的问题,并且在通过个人询问,好多人在打包部署的时候都遇到了一些问题,下面就来讲下,如何将Vue项目放置在服务器上,这里以Tomcat为例。css

必需要配置的就是/config/index.js

在vue-cli webpack的模板下的/config/index.js,咱们能够看到assetsPublicPath这个键,而且这个东西还出现了两次,我第一次打包的时候,只是修改了最下面的assetsPublicPath,将它从'/'变为了./,而后我就执行了npm run build,打包成功以后,能够看到项目中会多出来一个文件夹,就是dist,里面有一个static文件夹和index.html,而后我就将dist目录下的文件拷贝到Tomcat服务器下,会发现访问到的是一个空白页面,可是当我把它放在..\webapps\ROOT目录下,它就能够访问了html

Tomcat下面的目录结构:vue

这里写图片描述

可是这确定是不行的,而后我就开始寻找答案,也根据别人的一些步骤作了下来,后来发现仍是有一些问题的,没有办法访问到主页面,虽然吧,一直都没成功,可是我也没放弃,而后就综合了一下问答里面别人说的,进行了几回尝试,最后成功了。(给你们一个小建议:别放弃就好)。java

下面的就是个人config/index.js的配置:webpack

// see http://vuejs-templates.github.io/webpack for documentation. var path = require('path') module.exports = { build: { env: require('./prod.env'), index: path.resolve(__dirname, '../dist/index.html'), assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: './', productionSourceMap: true, // Gzip off by default as many popular static hosts such as // Surge or Netlify already gzip all static assets for you. // Before setting to `true`, make sure to: // npm install --save-dev compression-webpack-plugin productionGzip: false, productionGzipExtensions: ['js', 'css'], // Run the build command with an extra argument to // View the bundle analyzer report after build finishes: // `npm run build --report` // Set to `true` or `false` to always turn it on or off bundleAnalyzerReport: process.env.npm_config_report }, dev: { env: require('./dev.env'), port: 8080, autoOpenBrowser: true, assetsSubDirectory: 'static', assetsPublicPath: './', proxyTable: {}, // CSS Sourcemaps off by default because relative paths are "buggy" // with this option, according to the CSS-Loader README // (https://github.com/webpack/css-loader#sourcemaps) // In our experience, they generally work as expected, // just be aware of this issue when enabling this option. cssSourceMap: false } }

 

能够发现,我就改了两处,就是assetsPublicPath所对应的值,我这里用的是./,我也用webapps下的命的项目名试过,只是没获得我想要的结果,后来我仍是改为了./git

使用vue-router的状况

当你在项目中使用vue-router的时候,就须要给src/router/index.js添点东西,以下面:github

export default new Router({ mode : 'history', base: '/ttms/', //添加的地方 ... }

 

而后执行npm run dev,将打包后的文件放在Tomcat的目录下的WebApps下的ttms中,而后,就能够访问到了:http://localhost:8080/ttms/web

相关文章
相关标签/搜索