finish moving setup to own webapp

This commit is contained in:
2023-07-17 16:14:46 +02:00
parent 7f08269796
commit 98ac5c8dfc
23 changed files with 299 additions and 289 deletions

View File

@@ -4,13 +4,16 @@ 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))
export default defineConfig( {
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath( new URL( './src', import.meta.url ) )
},
},
server: {
'port': 8080
}
}
})