heritage-hub/vite.config.js

14 lines
262 B
JavaScript
Raw Normal View History

2024-01-31 08:24:01 +00:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
2024-01-31 08:34:42 +00:00
import path from 'path'
2024-01-31 08:24:01 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2024-01-31 08:34:42 +00:00
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
2024-01-31 08:24:01 +00:00
plugins: [vue()],
})