local alpinejs

This commit is contained in:
Andras Bacsai
2023-04-19 12:45:09 +02:00
parent d947175e4b
commit f61a67279a
4 changed files with 32 additions and 4 deletions

26
package-lock.json generated
View File

@@ -1,9 +1,12 @@
{ {
"name": "html", "name": "coolify-v4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"dependencies": {
"alpinejs": "^3.12.0"
},
"devDependencies": { "devDependencies": {
"autoprefixer": "^10.4.14", "autoprefixer": "^10.4.14",
"axios": "^1.1.2", "axios": "^1.1.2",
@@ -400,6 +403,19 @@
"node": ">= 8" "node": ">= 8"
} }
}, },
"node_modules/@vue/reactivity": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz",
"integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==",
"dependencies": {
"@vue/shared": "3.1.5"
}
},
"node_modules/@vue/shared": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz",
"integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA=="
},
"node_modules/acorn": { "node_modules/acorn": {
"version": "7.4.1", "version": "7.4.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
@@ -432,6 +448,14 @@
"node": ">=0.4.0" "node": ">=0.4.0"
} }
}, },
"node_modules/alpinejs": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.0.tgz",
"integrity": "sha512-YENcRBA9dlwR8PsZNFMTHbmdlTNwd1BkCeivPvOzzCKHas6AfwNRsDK9UEFmE5dXTMEZjnnpCTxV8vkdpWiOCw==",
"dependencies": {
"@vue/reactivity": "~3.1.1"
}
},
"node_modules/anymatch": { "node_modules/anymatch": {
"version": "3.1.3", "version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",

View File

@@ -11,5 +11,8 @@
"postcss": "^8.4.21", "postcss": "^8.4.21",
"tailwindcss": "^3.2.7", "tailwindcss": "^3.2.7",
"vite": "^4.0.0" "vite": "^4.0.0"
},
"dependencies": {
"alpinejs": "^3.12.0"
} }
} }

View File

@@ -1,2 +1,4 @@
import './bootstrap'; // import './bootstrap';
import Alpine from 'alpinejs'
window.Alpine = Alpine
Alpine.start()

View File

@@ -7,7 +7,6 @@
<title>{{ $title ?? 'Coolify' }}</title> <title>{{ $title ?? 'Coolify' }}</title>
<meta name="csrf-token" content="{{ csrf_token() }}"> <meta name="csrf-token" content="{{ csrf_token() }}">
@vite(['resources/js/app.js', 'resources/css/app.css']) @vite(['resources/js/app.js', 'resources/css/app.css'])
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
<style>[x-cloak] { display: none !important; }</style> <style>[x-cloak] { display: none !important; }</style>
@livewireStyles @livewireStyles
</head> </head>