feat(lilium) #7220 config
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-04-16 14:12:02 +02:00
parent 1a662b222b
commit 4d9fcbe23f
2 changed files with 21 additions and 0 deletions

View File

@ -20,4 +20,11 @@ module.exports = defineConfig({
// implement node event listeners here
},
},
component: {
devServer: {
framework: 'vue',
bundler: 'vite',
},
},
});

14
vite.config.js Normal file
View File

@ -0,0 +1,14 @@
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)),
},
},
});