Files
csgowtf/vite.config.ts
vikingowl 9a6d24193d
Some checks failed
CSGOWTF/csgowtf/pipeline/head There was a failure building this commit
upgrade from webpack to vite + typescript
2022-03-18 11:40:43 +01:00

15 lines
295 B
TypeScript

import { fileURLToPath, URL } from '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('./src', import.meta.url))
}
}
})