mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 21:34:24 +00:00
restructuring
This commit is contained in:
15
src/webapp/main/vite.config.js
Normal file
15
src/webapp/main/vite.config.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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' ),
|
||||
},
|
||||
},
|
||||
server: {
|
||||
'port': 8080
|
||||
}
|
||||
} );
|
||||
Reference in New Issue
Block a user