mirror of
https://github.com/Maks1mS/free-ozon-dpr.git
synced 2025-04-06 17:33:43 +03:00
move to src
This commit is contained in:
parent
ccdce54b73
commit
92dd2a688b
@ -4,7 +4,7 @@ import map from "./map";
|
|||||||
|
|
||||||
import "./popup";
|
import "./popup";
|
||||||
|
|
||||||
import mergedData from "./merged-data.json";
|
import mergedData from "../merged-data.json";
|
||||||
import { createFeatures } from "./features";
|
import { createFeatures } from "./features";
|
||||||
import VectorSource from "ol/source/Vector";
|
import VectorSource from "ol/source/Vector";
|
||||||
import VectorLayer from "ol/layer/Vector";
|
import VectorLayer from "ol/layer/Vector";
|
@ -4,7 +4,7 @@ import QRCode from "qrcode";
|
|||||||
import { el } from "./utils";
|
import { el } from "./utils";
|
||||||
import { toLonLat } from "ol/proj";
|
import { toLonLat } from "ol/proj";
|
||||||
|
|
||||||
const container = el("popup");
|
const popup = el("popup");
|
||||||
const closer = el("popup-closer");
|
const closer = el("popup-closer");
|
||||||
|
|
||||||
const popupName = el("popup-name");
|
const popupName = el("popup-name");
|
||||||
@ -15,7 +15,7 @@ const popupSource = el("popup-source");
|
|||||||
const popupOperationTime = el("popup-operation-time");
|
const popupOperationTime = el("popup-operation-time");
|
||||||
|
|
||||||
const overlay = new Overlay({
|
const overlay = new Overlay({
|
||||||
element: container,
|
element: popup,
|
||||||
autoPan: true,
|
autoPan: true,
|
||||||
autoPanAnimation: {
|
autoPanAnimation: {
|
||||||
duration: 250,
|
duration: 250,
|
@ -1,13 +1,17 @@
|
|||||||
import webfontDownload from 'vite-plugin-webfont-dl';
|
import webfontDownload from "vite-plugin-webfont-dl";
|
||||||
import { VitePluginRadar } from 'vite-plugin-radar'
|
import { VitePluginRadar } from "vite-plugin-radar";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
root: "src",
|
||||||
|
build: {
|
||||||
|
outDir: "../dist",
|
||||||
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
webfontDownload(),
|
webfontDownload(),
|
||||||
VitePluginRadar({
|
VitePluginRadar({
|
||||||
metrica: {
|
metrica: {
|
||||||
id: process.env.YANDEX_METRICA_ID
|
id: process.env.YANDEX_METRICA_ID,
|
||||||
},
|
},
|
||||||
})
|
}),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user