20 lines
535 B
HTML
20 lines
535 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>泉友米车友会</title>
|
|
<script>
|
|
// 运行时配置(可以通过环境变量注入)
|
|
window.AMAP_CONFIG = {
|
|
key: 'YOUR_AMAP_KEY_PLACEHOLDER',
|
|
securityCode: 'YOUR_AMAP_SECURITY_CODE_PLACEHOLDER'
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|