惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
小众软件
小众软件
D
Docker
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
V2EX
博客园 - 叶小钗
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
IT之家
IT之家
博客园 - 司徒正美
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog

博客园 - 草率的龙果果

window 11 Ultra5‑125H,Arrow Lake 卡顿解决办法 npm配置内网,git配置内网 jenkins打包完镜像更新页面没有变化 vue2 element ui dialog拖拽功能实现。 AI整理提示词 数字转换为中文数字 前端数据导出excel工具函数 自动监测数据有效传输率统计算法说明 echarts官方扩展vue组件vue-echarts实现链接两个charts实现联动 OPPO商店签名认领应用 iframe跨域通信(postMessage) 博文阅读密码验证 - 博客园 项目常用工具函数获取url参数和hash参数 Copilot键怎么改成Ctrl键? plus.downloader.createDownload 发送 POST 请求并携带 token vue2,vue3中在template中使用component组件is属性绑定jsx的vnode vue3 vite idea中control+鼠标单击不能跳转到文件定义的解决办法 vue/html-self-closing Vue2项目解决van-calendar 显示白色空白,需滑动一下屏幕,才可正常显示 Windows Terminal/Powershell 设置自动补全, 智能提示 【类似于mac的iterm2功能】 vue中使用axios获取不到响应头Content-Disposition的解决办法 ES7 新增方法:Array.prototype.some、Array.prototype.every 博文阅读密码验证 - 博客园 javascript跨域问题排查
vue2使用openlayers10.3.0版本组包
草率的龙果果 · 2024-12-09 · via 博客园 - 草率的龙果果
"node-polyfill-webpack-plugin": "2.0.1",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"node-polyfill-webpack-plugin": "2.0.1",
"ol": "^10.3.0",
module.exports = {
	presets: [
		'@vue/cli-plugin-babel/preset',
		['@babel/preset-env', { modules: false }]
	],
	plugins: [
		[
			'component',
			{
				libraryName: 'element-ui',
				styleLibraryName: 'theme-chalk'
			}
		]
	]
}
module.exports = defineConfig({
    transpileDependencies: ['ol'],
    lintOnSave: false,
    configureWebpack: {
        devtool: !isProduction ? 'source-map' : false,
        plugins: [new NodePolyfillPlugin()],
    },
    devServer: {
        client: {
            overlay: false // 禁用全局错误提示
        },
        port: 8151,
        host: '0.0.0.0',
        open: true,
        proxy: {
            '/api': {
                target: devProxyUrl,
                // 是否开启请求证书效验
                secure: false,
                changeOrigin: true,
                overlay: {
                    warnings: false,
                    errors: true
                },
                pathRewrite: {
                    '^/api': ''
                }
            }
        }
    }
})

https://blog.csdn.net/admans/article/details/131601438