自己在搭建vue是遇到很多问题也查啦很多,摸索着搭建完成,在博客记录一下同时加强记忆。
1.创建文件夹,打开cmd命令窗口,执行npm init 命令 初始化package.json文件
{
"name": "demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
name | 表示项目的名称 |
version | 表示项目的版本号 |
description | 对项目的描述 |
main | 项目的入口文件 |
script | 脚本命令配置 |
author | 作者(可以使用项目作者的名字) |
license | 证书 |
1.执行yarn add webpack webpack——cli --save-dev 或者执行 cnpm/npm install webpack webpack-cli --save-dev
2.配置构建脚本 如下面的build脚本
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
}
解决方法
- 在项目根木录中创建出src文件夹
- 然后在src文件夹中新增index.js文件 此时js文件名称不能随意命名
- 解决完成后再次执行npm run build 命令发现项目中多出一个dist文件夹
- dist文件夹中有一个压缩过后的js文件 main.js 在该文件中可以找到在src文件夹下的index.js的代码
-此时表示能够成功打包项目但是终端会提示未设置mode的警告
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
1.在项目根目录中创建sr文件夹 然后在src文件下创建main.js
const path = require('path')
module.exports = {
// 配置入口文件 入口的值可以是一个字符串 也可以是一个对象
// entry: './src/main.js'
entry: {
// 入口文件是对象的时候 对象的key(在不配置output的时候)会作为默认生成的js文件的文件名称
index: './src/main.js'// 需要打包的文件入口 key = index
},
// 打包输出文件的相关配置
// publicPath : __dirname + '/static/' 表示publicpath(资源引入路径)为绝对路径
// publicPath: '/' 资源引入从根目录开始
// publicPath: './' 代表相对路径
// __dirname:代表当前文件夹
output: {
publicPath: '/', // 公共资源引入的路径 // js 引用的路径或者 CDN 地址
path: path.resolve(__dirname, 'dist'), // 将打包生成的文件夹解析到当前项目的跟目录中 // 打包文件的输出目录
filename: 'index.js' // 打包生成的js文件的名称
}
}
1.使用 npm i @babel/core babel-loader @babel/preset-env @babel/plugin-transform-runtime @babel/polyfill @babel/runtime --save-dev 输入cmd安装babel相关依赖
2.安装的同时在项目的根目录中创建名为 .babelrc 的新文件来配置 Babel:
{
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-transform-runtime"]
}
WARNING: We noticed you're using the `useBuiltIns` option without declaring a core-js version.
Currently, we assume version 2.x when no version is passed.
Since this default version will likely change in future versions of Babel,
we recommend explicitly setting the core-js version you are using via the `corejs` option.
You should also be sure that the version you pass to the `corejs` option matches the version specified in your `package.json`
's `dependencies` section. If it doesn't, you need to run one of the following commands:
npm install --save core-js@2 npm install --save core-js@3
yarn add core-js@2 yarn add core-js@3
- 这时候就不仅仅不仅仅要安装 npm install --save core-js@3 还需要设置 .babelrc 设置 “corejs”: 3
{
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"plugins": ["@babel/plugin-transform-runtime"]
}
3.等安装结束后webpack 配置 loader(加载器)
// 在webpack.config.js中添加配置
module: {
rules: [
{
test: /\.js$/, // 使用正则来匹配 js 文件
exclude: /node_modules/, // 排除依赖包文件夹 //告诉系统那个文件不使用bable依赖 不进行转义
use: {
loader: 'babel-loader' // 使用 babel-loader //告诉系统使用那个loader
}
}
]
}
为什么要自动生成HTML 文件那,因为每次要去更改 index.html 中引入 js 文件很麻烦,一旦打包的名字变更后,也要对应的去修改 index.html 引入的 js 名称,这个时候就要使用一个插件来帮助我们,打包完之后自动生成 HTML 文件,并自动引入打包后的 js 文件
//有里边这几个配置就可以啦
{
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production"
},
"devDependencies": {
"clean-webpack-plugin": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"lodash": "^4.17.11"
}
}
// 该文件在webpack项目运行时会自动执行
const path = require('path') // 该模块不用下载可以直接使用
// 引入clean-webpack-plugin 插件 作用是每次打包会删除打包生成的文件夹并从新生成一个
const {
CleanWebpackPlugin } = require('clean-webpack-plugin')
// 引入自动生成html文件的插件
const HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry: {
index: './src/main.js'
},
output: {
publicPath: '/', // js 引用的路径或者 CDN 地址
path: path.resolve(__dirname, 'dist'), // 打包文件的输出目录
filename: 'index.js' // 打包后生产的 js 文件
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin ({
title: '自定义标题',
minify: {
removeComments: true, // 打包后移除html文件中的注释
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
filename: 'index.html' // 配置生成的html文件名称
})
],
module: {
rules: [
{
test: /\.js$/, // 使用正则来匹配 js 文件
exclude: '/node_modules/', // 排除依赖包文件夹
use: {
loader: 'babel-loader' // 使用 babel-loader
}
},
{
test: /\.vue$/, //vue规则
loader: 'vue-loader'
}
]
},
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<!-- 这是模板html文件 -->
<!-- <div>html文件</div> -->
<div id="app"></div>
</body>
</html>
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
title: '自定义标题', //生成的html的标题
minify: {
removeComments: true, // 打包后移除html文件中的注释
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
template: './public/index.html', // 生成html文件所需要的模板文件 --------------就是配置这个
filename: 'index.html' // 配置生成的html文件名称
})
],
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><%=htmlWebpackPlugin.options.title %></title>
</head>
<body>
<!-- 这是模板html文件 -->
<!-- <div>html文件</div> -->
<div id="app"></div>
</body>
</html>
"scripts": {
"serve": "webpack-dev-server", //就是添加这个 配置这个
"build": "webpack --mode production",
"dev": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
port: 3000, // 本地服务器端口号
hot: true, // 热重载
overlay: true, // 如果代码出错,会在浏览器页面弹出“浮动层”。类似于 vue-cli 等脚手架
historyApiFallback: {
// HTML5 history模式
rewrites: [{
from: /.*/, to: '/index.html' }]
}
}
mode: 'development', // 开发模式
devtool: 'source-map', // 开启调试 //开启调试的作用就是为啦调试的时候让文件的代码能看的懂,就算压缩后也能看懂
devServer: {
contentBase: path.join(__dirname, 'dist'),
port: 3000, // 本地服务器端口号 //可以自定义更改
hot: true, // 热重载
overlay: true, // 如果代码出错,会在浏览器页面弹出“浮动层”。类似于 vue-cli 等脚手架
historyApiFallback: {
// HTML5 history模式
rewrites: [{
from: /.*/, to: '/index.html' }]
}
}
const webpack = require('webpack')
new webpack.HotModuleReplacementPlugin(), // 热部署模块
new webpack.NamedModulesPlugin(),
plugins: [
new CleanWebpackPlugin(),
new webpack.HotModuleReplacementPlugin(), // 热部署模块
new webpack.NamedModulesPlugin(),
new HtmlWebpackPlugin ({
title: '自定义标题',
minify: {
removeComments: true, // 打包后移除html文件中的注释
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
template: './public/index.html', // 生成html文件所需要的模板文件
filename: 'index.html' // 配置生成的html文件名称
})
],
const VueLoaderPlugin = require('vue-loader/lib/plugin')
plugins: [
new CleanWebpackPlugin(),
new webpack.HotModuleReplacementPlugin(), // 热部署模块
new webpack.NamedModulesPlugin(),
new VueLoaderPlugin(),//引用vue插件
new HtmlWebpackPlugin ({
title: '自定义标题',
minify: {
removeComments: true, // 打包后移除html文件中的注释
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
template: './public/index.html', // 生成html文件所需要的模板文件
filename: 'index.html' // 配置生成的html文件名称
})
],
// 在webpack.config.js中添加配置
module: {
rules: [
{
test: /\.js$/, // 使用正则来匹配 js 文件
exclude: '/node_modules/', // 排除依赖包文件夹 //告诉系统那个文件不使用bable依赖 不进行转义
use: {
loader: 'babel-loader' // 使用 babel-loader //告诉系统使用那个loader
}
},
{
test: /\.vue$/, //vue规则
loader: 'vue-loader' // 使用 vue-loade //告诉系统使用那个loader
}
]
},
<template>
<div>
这是vue
</div>
</template>
import Vue from 'vue'
import App from './App.vue'
new Vue({
router,
render: h => h(App)
}).$mount('#app')
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><%=htmlWebpackPlugin.options.title %></title>
</head>
<body>
<!-- 这是模板html文件 -->
<!-- <div>html文件</div> -->
<div id="app"></div> //设置挂载点
</body>
</html>
// 该文件在webpack项目运行时会自动执行
const path = require('path') // 该模块不用下载可以直接使用
// 引入clean-webpack-plugin 插件 作用是每次打包会删除打包生成的文件夹并从新生成一个
const {
CleanWebpackPlugin } = require('clean-webpack-plugin')
// 引入自动生成html文件的插件
const HtmlWebpackPlugin = require('html-webpack-plugin')
// 引入webpack
const webpack = require('webpack')
//引入vue插件
const VueLoaderPlugin = require('vue-loader/lib/plugin')
// console.log('publicPath:' + __dirname + '/static/')
// console.log('path:' + path.resolve(__dirname, 'static'))
module.exports = {
entry: {
app: './src/main.js' // 需要打包的文件入口
},
output: {
publicPath: '/', // js 引用的路径或者 CDN 地址
path: path.resolve(__dirname, 'dist'), // 打包文件的输出目录
filename: 'bundle.js' // 打包后生产的 js 文件
},
plugins: [
new CleanWebpackPlugin(),
new webpack.HotModuleReplacementPlugin(), // 热部署模块
new webpack.NamedModulesPlugin(),
new VueLoaderPlugin(),
new HtmlWebpackPlugin ({
title: '自定义标题',
minify: {
removeComments: true, // 打包后移除html文件中的注释
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
template: './public/index.html', // 生成html文件所需要的模板文件
filename: 'index.html' // 配置生成的html文件名称
})
],
// 在webpack.config.js中添加配置
module: {
rules: [
{
test: /\.js$/, // 使用正则来匹配 js 文件
exclude: '/node_modules/', // 排除依赖包文件夹 //告诉系统那个文件不使用bable依赖 不进行转义
use: {
loader: 'babel-loader' // 使用 babel-loader //告诉系统使用那个loader
}
},
{
test: /\.vue$/, //vue规则
loader: 'vue-loader' // 使用 vue-loade //告诉系统使用那个loader
}
]
},
mode: 'development', // 开发模式
devtool: 'source-map', // 开启调试
devServer: {
contentBase: path.join(__dirname, 'dist'),
port: 3000, // 本地服务器端口号
hot: true, // 热重载
overlay: true, // 如果代码出错,会在浏览器页面弹出“浮动层”。类似于 vue-cli 等脚手架
historyApiFallback: {
// HTML5 history模式
rewrites: [{
from: /.*/, to: '/index.html' }]
}
}
}
<template>
<div class="home">
这是home页面
</div>
</template>
import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'home',
component: Home
}
]
let router = new VueRouter({
routes
})
export default router
import Vue from 'vue'
import router from './router/index'
import App from './App.vue'
new Vue ({
el:'#app',
router,
render: h=>h(App)
})
<template>
<div id="app">
<router-view></router-view>
</div>
</template>