create project vue

This commit is contained in:
Kittapath 2023-03-14 18:48:33 +07:00
parent 243cb707ee
commit 03b6076835
58 changed files with 15606 additions and 1 deletions

22
vite.config.ts Normal file
View file

@ -0,0 +1,22 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
quasar({
sassVariables: 'src/style/quasar-variables.sass'
}),
vueJsx()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})