-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
76 lines (55 loc) · 2.55 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const path = require('path')
const resolve = dir => path.join(__dirname, dir)
const webpack = require('webpack')
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
publicPath : '/',//部署应用包时的基本 URL
outputDir : 'dist',
assetsDir : 'static',//放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。
indexPath : 'index.html',
filenameHashing : false,//生成的静态资源在它们的文件名中包含了 hash 以便更好的控制缓存
runtimeCompiler : true,//是否使用包含运行时编译器的 Vue 构建版本
transpileDependencies : [],//通过 Babel 显式转译一个依赖
productionSourceMap : false,//
chainWebpack: config => {
config.resolve.alias
.set('@', resolve('src'));
},
configureWebpack: config => { // 修改配置数据
let plugins =[];
let copyWebpackPlugin = new CopyWebpackPlugin([{
from: 'node_modules/mavon-editor/dist/highlightjs',
to: path.resolve(__dirname, '../dist/highlightjs'), // 插件将会把文件导出于/dist/highlightjs之下
}, {
from: 'node_modules/mavon-editor/dist/markdown',
to: path.resolve(__dirname, '../dist/markdown'), // 插件将会把文件导出于/dist/markdown之下
}, {
from: 'node_modules/mavon-editor/dist/katex', // 插件将会把文件导出
to: path.resolve(__dirname, '../dist/katex')
}]);
plugins.push(copyWebpackPlugin);
config.plugins = [...config.plugins, ...plugins];
},
devServer : { //代理
port : 9876,
proxy: {
'/api': {
ws: false,
target:'http://127.0.0.1:8001/'
}
}
},
pages : {
index : {
entry: 'src/index/main.js',// page 的入口
template: 'public/index.html',// 模板来源
filename: 'index.html',// 在 dist/index.html 的输出
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: '首页数据',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
// chunks: ['chunk-vendors', 'chunk-common', 'index']
},
},
}