mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 11:16:49 -04:00
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./Resources/assets/js', import.meta.url))
|
|
}
|
|
}
|
|
})
|