mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
28 lines
528 B
JavaScript
28 lines
528 B
JavaScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import path from 'path';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
test: {
|
|
environment: 'jsdom'
|
|
},
|
|
// Server applies to "vite" command
|
|
server: {
|
|
port: 8080
|
|
},
|
|
// Preview applies to "vite preview" command
|
|
preview: {
|
|
port: 8080
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['@ionic/vue', '@ionic/vue-router']
|
|
}
|
|
})
|