0
0
mirror of https://github.com/Maks1mS/free-ozon-dpr.git synced 2025-04-05 17:03:45 +03:00

move to src

This commit is contained in:
Maxim Slipenko 2024-06-08 19:58:42 +03:00
parent ccdce54b73
commit 92dd2a688b
9 changed files with 13 additions and 9 deletions

View File

@ -4,7 +4,7 @@ import map from "./map";
import "./popup";
import mergedData from "./merged-data.json";
import mergedData from "../merged-data.json";
import { createFeatures } from "./features";
import VectorSource from "ol/source/Vector";
import VectorLayer from "ol/layer/Vector";

View File

View File

@ -4,7 +4,7 @@ import QRCode from "qrcode";
import { el } from "./utils";
import { toLonLat } from "ol/proj";
const container = el("popup");
const popup = el("popup");
const closer = el("popup-closer");
const popupName = el("popup-name");
@ -15,7 +15,7 @@ const popupSource = el("popup-source");
const popupOperationTime = el("popup-operation-time");
const overlay = new Overlay({
element: container,
element: popup,
autoPan: true,
autoPanAnimation: {
duration: 250,

View File

@ -1,13 +1,17 @@
import webfontDownload from 'vite-plugin-webfont-dl';
import { VitePluginRadar } from 'vite-plugin-radar'
import webfontDownload from "vite-plugin-webfont-dl";
import { VitePluginRadar } from "vite-plugin-radar";
export default {
root: "src",
build: {
outDir: "../dist",
},
plugins: [
webfontDownload(),
VitePluginRadar({
VitePluginRadar({
metrica: {
id: process.env.YANDEX_METRICA_ID
id: process.env.YANDEX_METRICA_ID,
},
})
}),
],
};
};