mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-26 17:28:56 +00:00
adonisjs
This commit is contained in:
19
adonisjs/simple/vite.config.ts
Normal file
19
adonisjs/simple/vite.config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import adonisjs from '@adonisjs/vite/client'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
adonisjs({
|
||||
/**
|
||||
* Entrypoints of your application. Each entrypoint will
|
||||
* result in a separate bundle.
|
||||
*/
|
||||
entrypoints: ['resources/css/app.css', 'resources/js/app.js'],
|
||||
|
||||
/**
|
||||
* Paths to watch and reload the browser on file change
|
||||
*/
|
||||
reload: ['resources/views/**/*.edge'],
|
||||
}),
|
||||
],
|
||||
})
|
||||
Reference in New Issue
Block a user