代码拉取完成,页面将自动刷新
"use strict"; // JS严格模式
const path = require("path"); // node引入路径操作模块
const defaultSettings = require("./src/settings.js"); // 引入项目页面默认设置文件
function resolve(dir) {
return path.join(__dirname, dir); // node拼接绝对路径
}
const name = defaultSettings.title || "vue Element Admin"; // 浏览器标签标题
// 如果您的端口设置为80,
// 使用管理员权限执行命令行。
// 例如,Mac:sudo npm run
// 您可以通过以下方法更改端口:
// port = 9527 npm run dev或npm run dev --port = 9527
const port = process.env.port || process.env.npm_config_port || 9527; // dev port
// 可以在以下位置找到所有配置项目的说明 https://cli.vuejs.org/config/
module.exports = {
/**
* 如果您打算在子路径下部署站点,则需要设置publicPath,
* 例如GitHub Pages。 如果您打算将网站部署到 https://foo.github.io/bar/,
* 然后应该将publicPath设置为 "/bar/".
* 在大多数情况下,请使用 '/' !!!
* 细节: https://cli.vuejs.org/config/#publicpath
*/
// hash 模式下可使用
publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
// publicPath: "./", // 打包APP的首页路径(防止打包的APP首页空白)改成"./"
outputDir: "dist", // 打包输出文件夹
assetsDir: "static", // 静态文件夹
lintOnSave: process.env.NODE_ENV === "development", // 在保存时校验格式
productionSourceMap: false, // 生产环境是否生成 sourceMap 文件
devServer: {
/**
* hot配置是否启用模块的热替换功能,
* devServer的默认行为是在发现源代码被变更后,
* 通过自动刷新整个页面来做到事实预览,
* 开启hot后,将在不刷新整个页面的情况下通过新模块替换老模块来做到实时预览。
* hot 和 hotOnly 的区别是在某些模块不支持热更新的情况下,
* 前者会自动刷新页面,
* 后者不会刷新页面,
* 而是在控制台输出热更新失败
**/
hot: true, // 热加载(前端编译后保存页面自动刷新?)
hotOnly: false,
port: port, // 端口
open: true, // 启动服务后是否打开浏览器
overlay: {
warnings: false,
errors: true
},
// 跨域代理
proxy: { // 打包上线的时候注释这块代码
"/api": {
target: `http://192.168.2.102:4321`, // 修改后端接口地址
changeOrigin: true, // 开启跨域
pathRewrite: {
// 修改代理
"^/api": ""
}
}
}
},
configureWebpack: {
// 在webpack的名称字段中提供应用程序的标题,以便可以在index.html中对其进行访问以注入正确的标题。
name: name,
resolve: {
alias: {
"@": resolve("src")
}
}
},
chainWebpack(config) {
// 可以提高第一个屏幕的速度,建议打开预加载
config.plugin("preload").tap(() => [
{
rel: "preload",
// to ignore runtime.js
// https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
include: "initial"
}
]);
// 当页面很多时,将导致太多毫无意义的请求
config.plugins.delete("prefetch");
// set svg-sprite-loader
// 加载svg文件插件
config.module
.rule("svg")
.exclude.add(resolve("src/assets/icons"))
.end();
config.module
.rule("icons")
.test(/\.svg$/)
.include.add(resolve("src/assets/icons"))
.end()
.use("svg-sprite-loader")
.loader("svg-sprite-loader")
.options({
symbolId: "icon-[name]"
})
.end();
// 设置preserveWhitespace
config.module
.rule("vue")
.use("vue-loader")
.loader("vue-loader")
.tap(options => {
options.compilerOptions.preserveWhitespace = true;
return options;
})
.end();
config.when(process.env.NODE_ENV !== "development", config => {
config
.plugin("ScriptExtHtmlWebpackPlugin")
.after("html")
.use("script-ext-html-webpack-plugin", [
{
// `runtime`必须与runtimeChunk名称相同。 默认是“运行时”
inline: /runtime\..*\.js$/
}
])
.end();
config.optimization.splitChunks({
chunks: "all",
cacheGroups: {
libs: {
name: "chunk-libs",
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: "initial" // 仅打包最初依赖的第三方
},
elementUI: {
name: "chunk-elementUI", // 将elementUI拆分为一个包
priority: 20, // 重量需要大于libs和app,否则将打包到libs或app中
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // 为了适应cnpm
},
commons: {
name: "chunk-commons",
test: resolve("src/components"), // 可以自定义您的规则
minChunks: 3, // 最小共同数
priority: 5,
reuseExistingChunk: true
}
}
});
// https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
config.optimization.runtimeChunk("single");
});
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。