init repo

This commit is contained in:
LeoMortari
2025-08-28 20:22:13 -03:00
commit 54fc9f400b
22 changed files with 913 additions and 0 deletions

28
vite.config.js Normal file
View File

@@ -0,0 +1,28 @@
import vue from "@vitejs/plugin-vue";
import path from "node:path";
import { defineConfig } from "vite";
import { fileURLToPath } from "node:url";
import { quasar, transformAssetUrls } from "@quasar/vite-plugin";
export default defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "src/"),
"@assets": path.resolve(__dirname, "src/assets/"),
"@components": path.resolve(__dirname, "src/components/"),
"@utils": path.resolve(__dirname, "src/utils/"),
},
extensions: [".js", ".vue", ".json"],
},
plugins: [
vue({
template: { transformAssetUrls },
}),
quasar({
sassVariables: fileURLToPath(
new URL("./src/quasar-variables.sass", import.meta.url)
),
}),
],
});