Added the ability to add project information.
This commit is contained in:
@@ -1,14 +1,23 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import laravel from 'laravel-vite-plugin';
|
||||
import { viteStaticCopy } from 'vite-plugin-static-copy'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
laravel({
|
||||
input: [
|
||||
'resources/volt/scss/app.scss',
|
||||
'resources/volt/js/app.js'
|
||||
'resources/volt/js/app.js',
|
||||
],
|
||||
refresh: true,
|
||||
}),
|
||||
viteStaticCopy({
|
||||
targets: [
|
||||
{
|
||||
src: ['node_modules/tinymce/*', 'resources/tinymce/*'],
|
||||
dest: 'tinymce'
|
||||
}
|
||||
]
|
||||
})
|
||||
],
|
||||
});
|
||||
|
Reference in New Issue
Block a user