13 lines
405 B
JavaScript
13 lines
405 B
JavaScript
import { startStimulusApp } from '@symfony/stimulus-bundle';
|
|
|
|
const app = startStimulusApp();
|
|
// register any custom, 3rd party controllers here
|
|
// app.register('some_controller_name', SomeImportedController);
|
|
|
|
import htmx from 'htmx.org'
|
|
window.htmx = htmx
|
|
htmx.config.includeIndicatorStyles = false
|
|
htmx.config.historyEnabled = false
|
|
htmx.config.historyCacheSize = 0
|
|
htmx.config.allowScriptTags = false
|