mirror of
https://github.com/Maks1mS/free-ozon-dpr.git
synced 2024-12-23 18:42:59 +03:00
18 lines
322 B
JavaScript
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,
|
|
},
|
|
}),
|
|
],
|
|
};
|