mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-24 12:22:27 +03:00
13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
|
import { defineConfig } from "vite";
|
||
|
import { ViteWebfontDownload } from "vite-plugin-webfont-dl";
|
||
|
|
||
|
export default {
|
||
|
vite: defineConfig({
|
||
|
plugins: [
|
||
|
ViteWebfontDownload([
|
||
|
"https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap&subset=latin",
|
||
|
]),
|
||
|
],
|
||
|
}),
|
||
|
};
|