opnform/vite.config.js

64 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-10-14 15:31:30 +00:00
import { defineConfig } from 'vite'
import laravel from 'laravel-vite-plugin'
2023-10-14 15:31:30 +00:00
import vue from '@vitejs/plugin-vue'
2023-10-13 09:31:56 +00:00
import { sentryVitePlugin } from '@sentry/vite-plugin'
const plugins = [
laravel({
input: [
'resources/js/app.js'
],
refresh: true
2023-10-13 09:31:56 +00:00
}),
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false
2023-10-14 08:22:08 +00:00
},
compilerOptions: {
compatConfig: {
MODE: 2
}
2023-10-13 09:31:56 +00:00
}
}
})
]
2023-10-14 15:31:30 +00:00
if (false && process.env.SENTRY_AUTH_TOKEN) {
2023-10-13 09:31:56 +00:00
plugins.push(sentryVitePlugin({
org: 'opnform',
project: 'opnform',
authToken: process.env.SENTRY_AUTH_TOKEN
}))
}
export default defineConfig({
2023-10-13 09:31:56 +00:00
build: {
sourcemap: process.env.SENTRY_AUTH_TOKEN ? true : 'inline'
},
esbuild: {
minify: true,
minifySyntax: true
},
2023-10-13 09:31:56 +00:00
plugins: plugins,
optimizeDeps: {
exclude: [
2023-10-14 08:22:08 +00:00
'vt-notifications'
]
},
resolve: {
alias: {
'~': '/resources/js',
2023-10-14 08:22:08 +00:00
'@': '/resources',
vue: '@vue/compat'
}
},
server: {
hmr: {
host: 'localhost',
protocol: 'ws'
}
}
})