-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
42 lines (41 loc) · 1.32 KB
/
vite.config.js
File metadata and controls
42 lines (41 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import { viteStaticCopy } from 'vite-plugin-static-copy';
export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
'resources/js/editor/tinymce-init.js',
],
refresh: true,
}),
viteStaticCopy({
targets: [
{
// TinyMCE loads itself dynamically from /vendor/tinymce (web root),
// so copy to public/vendor/tinymce rather than public/build/vendor/tinymce.
src: 'node_modules/tinymce/**/*',
dest: '../vendor/tinymce',
},
{
src: 'resources/tiny-plugins/**/*',
dest: '../tiny-plugins',
},
{
src: 'node_modules/@fortawesome/fontawesome-free/webfonts/*',
dest: 'vendor/fontawesome/webfonts',
},
],
}),
],
build: {
rollupOptions: {
output: {
entryFileNames: 'assets/[name]-[hash].js',
assetFileNames: 'assets/[name]-[hash][extname]',
},
},
},
});