Compare commits

3 Commits

Author SHA1 Message Date
elvira b88fde739c Merge branch 'master' into elv 2026-07-10 16:56:34 +03:00
elvira ace8290c62 composer lock 2026-07-10 16:55:57 +03:00
elvira dbc8866056 vite 2026-07-09 19:20:20 +03:00
2 changed files with 12 additions and 12 deletions
Generated
+3 -3
View File
@@ -565,11 +565,11 @@
}, },
{ {
"name": "boboko/core", "name": "boboko/core",
"version": "0.1.1", "version": "0.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://code.radical-elements.com/boboko/core.git", "url": "https://code.radical-elements.com/boboko/core.git",
"reference": "96ad89b6b8a99e628e438b6c724c2a0e4dde8c61" "reference": "0524380ab0922729d177e7bf000c61be1fba440a"
}, },
"require": { "require": {
"laravel/framework": "^12.0", "laravel/framework": "^12.0",
@@ -605,7 +605,7 @@
} }
}, },
"description": "Core module — authentication and shared panel behaviour", "description": "Core module — authentication and shared panel behaviour",
"time": "2026-07-10T09:51:29+00:00" "time": "2026-07-10T12:21:42+00:00"
}, },
{ {
"name": "brick/math", "name": "brick/math",
+9 -9
View File
@@ -1,31 +1,31 @@
import { defineConfig } from 'vite'; import { defineConfig } from "vite";
import laravel from 'laravel-vite-plugin'; import laravel from "laravel-vite-plugin";
import tailwindcss from '@tailwindcss/vite'; import tailwindcss from "@tailwindcss/vite";
export default defineConfig({ export default defineConfig({
build: { build: {
// Target browsers that support ES modules natively (Chrome 89+, Firefox 89+, // Target browsers that support ES modules natively (Chrome 89+, Firefox 89+,
// Safari 15+, Edge 89+). Eliminates legacy polyfills flagged by PageSpeed. // Safari 15+, Edge 89+). Eliminates legacy polyfills flagged by PageSpeed.
target: ['es2022', 'chrome89', 'firefox89', 'safari15', 'edge89'], target: ["es2022", "chrome89", "firefox89", "safari15", "edge89"],
}, },
plugins: [ plugins: [
laravel({ laravel({
input: ['resources/css/app.css', 'resources/js/app.js'], input: ["resources/css/app.css", "resources/js/app.js"],
refresh: true, refresh: true,
}), }),
tailwindcss(), tailwindcss(),
], ],
server: { server: {
host: '0.0.0.0', host: "0.0.0.0",
port: 5173, port: 5174,
strictPort: true, strictPort: true,
cors: true, cors: true,
hmr: { hmr: {
host: 'localhost', host: "localhost",
clientPort: process.env.VITE_PORT || 5173, clientPort: process.env.VITE_PORT || 5173,
}, },
watch: { watch: {
ignored: ['**/storage/framework/views/**'], ignored: ["**/storage/framework/views/**"],
}, },
}, },
}); });