vueCli3以及vueCli4创建vue项目
程序员文章站
2022-06-13 10:16:22
...
创建项目流程
1.首先卸载旧版本
// npm
npm uninstall vue-cli -g
// yarn
yarn global remove vue-cli
2.更新node版本 需要8.9以上
3.安装vue/cli3
// npm
npm install -g @vue/cli
// yarn
yarn global add @vue/cli
4.查看版本
vue --version
5.创建项目(这里的vue-cli3是文件名,可以根据需求自己起)
vue create vue-cli3
6.启动项目
// npm
npm run serve
// yarn
yarn serve
7.打包
// npm
npm run build
// yarn
yarn build
自定义配置
//根目录下面新建 vue.config.js 文件
// 在这里配置
module.exports = {
//部署应用包时的基本 URL
publicPath: process.env.NODE_ENV === 'production' ? '/test/' : './',
//当运行 vue-cli-service build 时生成的生产环境构建文件的目录
outputDir: 'dist',
//放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
assetsDir: 'assets',
// eslint-loader 是否在保存的时候检查 安装@vue/cli-plugin-eslint有效
lintOnSave: true,
//是否使用包含运行时编译器的 Vue 构建版本。设置true后你就可以在使用template
runtimeCompiler: true,
// 生产环境是否生成 sourceMap 文件 sourceMap的详解请看末尾
productionSourceMap: true,
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
// 为生产环境修改配置...
} else {
// 为开发环境修改配置...
}
},
// css相关配置
css: {
// 是否使用css分离插件 ExtractTextPlugin 生产环境下是true,开发环境下是false
extract: true,
// 开启 CSS source maps?
sourceMap: false,
// css预设器配置项
loaderOptions: {},
// 启用 CSS modules for all css / pre-processor files.
modules: false
},
// webpack-dev-server 相关配置
devServer: { // 设置代理
hot: true, //热加载
host: '0.0.0.0', //ip地址
port: 8085, //端口
https: false, //false关闭https,true为开启
open: true, //自动打开浏览器
proxy: {
'/api': { //本地
target: 'xxx',
// 如果要代理 websockets
ws: true,
changeOrigin: true
},
'/test': { //测试
target: 'xxx'
},
'/pre': { //预发布
target: 'xxx'
},
'/pro': { //正式
target: 'xxx'
}
}
},
pluginOptions: { // 第三方插件配置
// ...
}
}
上一篇: 阿里服务器ftp连接问题
下一篇: 不加图形验证码如何保证短信接口的安全?