106 lines
3.9 KiB
TypeScript
106 lines
3.9 KiB
TypeScript
import { fileURLToPath } from 'node:url'
|
||
import laravel from 'laravel-vite-plugin'
|
||
import vue from '@vitejs/plugin-vue'
|
||
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||
import AutoImport from 'unplugin-auto-import/vite'
|
||
import Components from 'unplugin-vue-components/vite'
|
||
import { VueRouterAutoImports, getPascalCaseRouteName } from 'unplugin-vue-router'
|
||
import VueRouter from 'unplugin-vue-router/vite'
|
||
import { defineConfig } from 'vite'
|
||
import MetaLayouts from 'vite-plugin-vue-meta-layouts'
|
||
import vuetify from 'vite-plugin-vuetify'
|
||
import svgLoader from 'vite-svg-loader'
|
||
|
||
// https://vitejs.dev/config/
|
||
export default defineConfig({
|
||
plugins: [// Docs: https://github.com/posva/unplugin-vue-router
|
||
// ℹ️ This plugin should be placed before vue plugin
|
||
VueRouter({
|
||
getRouteName: routeNode => {
|
||
// Convert pascal case to kebab case
|
||
return getPascalCaseRouteName(routeNode)
|
||
.replace(/([a-z\d])([A-Z])/g, '$1-$2')
|
||
.toLowerCase()
|
||
},
|
||
|
||
routesFolder: 'resources/ts/pages',
|
||
}),
|
||
vue({
|
||
template: {
|
||
compilerOptions: {
|
||
isCustomElement: tag => tag === 'swiper-container' || tag === 'swiper-slide',
|
||
},
|
||
|
||
transformAssetUrls: {
|
||
base: null,
|
||
includeAbsolute: false,
|
||
},
|
||
},
|
||
}),
|
||
laravel({
|
||
input: ['resources/ts/main.ts'],
|
||
refresh: true,
|
||
}),
|
||
vueJsx(), // Docs: https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin
|
||
vuetify({
|
||
styles: {
|
||
configFile: 'resources/styles/variables/_vuetify.scss',
|
||
},
|
||
}), // Docs: https://github.com/dishait/vite-plugin-vue-meta-layouts?tab=readme-ov-file
|
||
MetaLayouts({
|
||
target: './resources/ts/layouts',
|
||
defaultLayout: 'default',
|
||
}), // Docs: https://github.com/antfu/unplugin-vue-components#unplugin-vue-components
|
||
Components({
|
||
dirs: ['resources/ts/@core/components', 'resources/ts/views/demos', 'resources/ts/components'],
|
||
dts: true,
|
||
resolvers: [
|
||
componentName => {
|
||
// Auto import `VueApexCharts`
|
||
if (componentName === 'VueApexCharts')
|
||
return { name: 'default', from: 'vue3-apexcharts', as: 'VueApexCharts' }
|
||
},
|
||
],
|
||
}), // Docs: https://github.com/antfu/unplugin-auto-import#unplugin-auto-import
|
||
AutoImport({
|
||
imports: ['vue', VueRouterAutoImports, '@vueuse/core', '@vueuse/math', 'vue-i18n', 'pinia'],
|
||
dirs: [
|
||
'./resources/ts/@core/utils',
|
||
'./resources/ts/@core/composable/',
|
||
'./resources/ts/composables/',
|
||
'./resources/ts/utils/',
|
||
'./resources/ts/plugins/*/composables/*',
|
||
],
|
||
vueTemplate: true,
|
||
|
||
// ℹ️ Disabled to avoid confusion & accidental usage
|
||
ignore: ['useCookies', 'useStorage'],
|
||
}),
|
||
svgLoader(),
|
||
],
|
||
define: { 'process.env': {} },
|
||
resolve: {
|
||
alias: {
|
||
'@core-scss': fileURLToPath(new URL('./resources/styles/@core', import.meta.url)),
|
||
'@': fileURLToPath(new URL('./resources/ts', import.meta.url)),
|
||
'@themeConfig': fileURLToPath(new URL('./themeConfig.ts', import.meta.url)),
|
||
'@core': fileURLToPath(new URL('./resources/ts/@core', import.meta.url)),
|
||
'@layouts': fileURLToPath(new URL('./resources/ts/@layouts', import.meta.url)),
|
||
'@images': fileURLToPath(new URL('./resources/images/', import.meta.url)),
|
||
'@styles': fileURLToPath(new URL('./resources/styles/', import.meta.url)),
|
||
'@configured-variables': fileURLToPath(new URL('./resources/styles/variables/_template.scss', import.meta.url)),
|
||
'@db': fileURLToPath(new URL('./resources/ts/plugins/fake-api/handlers/', import.meta.url)),
|
||
'@api-utils': fileURLToPath(new URL('./resources/ts/plugins/fake-api/utils/', import.meta.url)),
|
||
},
|
||
},
|
||
build: {
|
||
chunkSizeWarningLimit: 5000,
|
||
},
|
||
optimizeDeps: {
|
||
exclude: ['vuetify'],
|
||
entries: [
|
||
'./resources/ts/**/*.vue',
|
||
],
|
||
},
|
||
})
|