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';
|
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(),
|
|
|
|
],
|
|
|
|
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
|
|
|
});
|