mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-23 12:00:52 +00:00
29 lines
689 B
JavaScript
Vendored
29 lines
689 B
JavaScript
Vendored
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
// import react from '@vitejs/plugin-react';
|
|
// import vue from '@vitejs/plugin-vue';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel([
|
|
// 'resources/css/app.css',
|
|
'resources/js/app.js',
|
|
'resources/js/pusher.js',
|
|
]),
|
|
// react(),
|
|
// vue({
|
|
// template: {
|
|
// transformAssetUrls: {
|
|
// base: null,
|
|
// includeAbsolute: false,
|
|
// },
|
|
// },
|
|
// }),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': '/resources/js'
|
|
}
|
|
}
|
|
});
|