0
0
mirror of https://github.com/Maks1mS/free-ozon-dpr.git synced 2024-12-23 18:42:59 +03:00
free-ozon-dpr/vite.config.js
Maxim Slipenko deeed2e2ef
chore: improve ux and dx (#1)
* move to src

* hide popup at startup

* add eslint
2024-06-08 20:18:09 +03:00

18 lines
322 B
JavaScript

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