123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
- <link rel="icon" href="<%= BASE_URL %><%= VUE_APP_STATIC_DIR %>/favicon.ico" />
- <link rel="stylesheet" href="<%= VUE_APP_FONTS_URL %>" />
- <link rel="stylesheet" href="<%= BASE_URL %><%= VUE_APP_STATIC_DIR %>/static/lib/animate/animate.min.css" />
- <script src="<%= BASE_URL %><%= VUE_APP_STATIC_DIR %>/static/lib/vconsole.js"></script>
- <script src="<%= BASE_URL %><%= VUE_APP_STATIC_DIR %>/static/lib/mobile-detect.js?_=1"></script>
- <title></title>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app"></div>
- <script src="<%= BASE_URL %><%= VUE_APP_SDK_DIR %>/kankan-sdk-deps.js?v=<%= VUE_APP_VERSION %>"></script>
- <script>
- var medici = Medici.init({
- platform: 'web',
- appId: '7b5958d5-1ae6-4ad5-8a87-5fc8a4b92999',
- endPoint: '/track_api', //服务器
- config: {
- version: '1', //配置要track当前版本
- },
- })
- medici.stop();
- medici.startTrack('view-timing', {
- eventType: 'time',
- time: 'all',
- })
- </script>
- <script src="<%= BASE_URL %><%= VUE_APP_SDK_DIR %>/kankan-sdk.js?v=<%= VUE_APP_VERSION %>"></script>
- <script>
- if ((query = window.location.href.indexOf('vlog') != -1)) {
- var vConsole = new window.VConsole()
- }
- </script>
- <!-- built files will be auto injected -->
- </body>
- </html>
|