mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-29 02:44:34 +00:00
28 lines
674 B
JavaScript
28 lines
674 B
JavaScript
|
import { defineConfig } from 'vite';
|
||
|
import laravel from 'laravel-vite-plugin';
|
||
|
import path from 'path'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
laravel({
|
||
|
input: [
|
||
|
'resources/css/app.css',
|
||
|
'resources/sass/app.scss',
|
||
|
'resources/js/app.js',
|
||
|
'resources/js/tinymce.js',
|
||
|
'resources/css/armory.css',
|
||
|
],
|
||
|
refresh: true,
|
||
|
}),
|
||
|
],
|
||
|
resolve : {
|
||
|
alias : {
|
||
|
'~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap'),
|
||
|
'$': 'jQuery'
|
||
|
}
|
||
|
},
|
||
|
build: {
|
||
|
chunkSizeWarningLimit: 1600,
|
||
|
}
|
||
|
});
|