sake-app/vite.config.js

32 lines
619 B
JavaScript
Raw Normal View History

2023-07-26 19:33:29 +02:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
2023-07-30 22:51:52 +02:00
base: '',
2023-07-29 12:03:53 +02:00
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
build: {
// https://rollupjs.org/configuration-options/
rollupOptions: {
output: {
entryFileNames: 'assets/[name].js',
assetFileNames: 'assets/sake.min[extname]',
}
}
2023-08-07 17:23:40 +02:00
},
define: {
__VUE_I18N_FULL_INSTALL__: true,
__VUE_I18N_LEGACY_API__: false,
__INTLIFY_PROD_DEVTOOLS__: false,
2023-07-29 12:03:53 +02:00
}
2023-07-26 19:33:29 +02:00
})