migrate to vite instead of webpack

This commit is contained in:
2023-07-04 18:11:20 +02:00
parent 7d379bbe62
commit 3b8bec2f6c
7 changed files with 548 additions and 16685 deletions

12
src/webapp/vite.config.js Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const path = require( 'path' );
export default defineConfig( {
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve( __dirname, './src' ),
},
},
} );