mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 06:54:03 +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",
|
|
]),
|
|
],
|
|
}),
|
|
};
|