This commit is contained in:
Moheeb Zara
2025-12-05 23:54:42 -07:00
parent 9c89e1883c
commit b15a759842
48 changed files with 0 additions and 638 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
css: {
preprocessorOptions: {
scss: {
additionalData: `@import "@/styles/_variables.scss";`
}
}
}
})