mirror of
https://github.com/brunofontes/shareit.git
synced 2025-12-15 12:02:08 -03:00
chore: Update to Laravel 9.0
This commit is contained in:
27
vite.config.js
vendored
Normal file
27
vite.config.js
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
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',
|
||||
]),
|
||||
// react(),
|
||||
// vue({
|
||||
// template: {
|
||||
// transformAssetUrls: {
|
||||
// base: null,
|
||||
// includeAbsolute: false,
|
||||
// },
|
||||
// },
|
||||
// }),
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': '/resources/js'
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user