56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
|
// Plugins
|
||
|
import Components from "unplugin-vue-components/vite"
|
||
|
import Vue from "@vitejs/plugin-vue"
|
||
|
import Vuetify, { transformAssetUrls } from "vite-plugin-vuetify"
|
||
|
import ViteFonts from "unplugin-fonts/vite"
|
||
|
import VueRouter from "unplugin-vue-router/vite"
|
||
|
|
||
|
// Utilities
|
||
|
import { defineConfig } from "vite"
|
||
|
import { fileURLToPath, URL } from "node:url"
|
||
|
import * as path from "node:path"
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
VueRouter(),
|
||
|
Vue({
|
||
|
template: { transformAssetUrls }
|
||
|
}),
|
||
|
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme
|
||
|
Vuetify({
|
||
|
autoImport: true,
|
||
|
styles: {
|
||
|
configFile: "src/styles/settings.scss"
|
||
|
}
|
||
|
}),
|
||
|
Components(),
|
||
|
ViteFonts({
|
||
|
google: {
|
||
|
families: [
|
||
|
{
|
||
|
name: "Roboto",
|
||
|
styles: "wght@100;300;400;500;700;900"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
})
|
||
|
],
|
||
|
define: { "process.env": {} },
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"@": fileURLToPath(new URL("./src", import.meta.url))
|
||
|
},
|
||
|
extensions: [".js", ".json", ".jsx", ".mjs", ".ts", ".tsx", ".vue"]
|
||
|
},
|
||
|
server: {
|
||
|
port: 3000,
|
||
|
proxy: {
|
||
|
"/graphql": {
|
||
|
target: "http://localhost:24007",
|
||
|
secure: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|