sake-app/vite.config.js

37 lines
793 B
JavaScript
Raw Permalink Normal View History

2023-08-11 18:16:57 +02:00
import { fileURLToPath, URL } from 'node:url';
2023-07-26 19:33:29 +02:00
2023-08-11 18:16:57 +02:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
import path from 'path';
2023-07-26 19:33:29 +02:00
// 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(),
VueI18nPlugin({
include: [path.resolve(__dirname, './src/locales/**')],
}),
2023-07-29 12:03:53 +02:00
],
resolve: {
alias: {
2023-08-11 18:16:57 +02:00
'@': fileURLToPath(new URL('./src', import.meta.url)),
2023-07-29 12:03:53 +02:00
}
},
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-08-11 18:16:57 +02:00
});