generated from boboko/starter
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b88fde739c | |||
| ace8290c62 | |||
| dbc8866056 |
Generated
+3
-3
@@ -565,11 +565,11 @@
|
||||
},
|
||||
{
|
||||
"name": "boboko/core",
|
||||
"version": "0.1.1",
|
||||
"version": "0.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://code.radical-elements.com/boboko/core.git",
|
||||
"reference": "96ad89b6b8a99e628e438b6c724c2a0e4dde8c61"
|
||||
"reference": "0524380ab0922729d177e7bf000c61be1fba440a"
|
||||
},
|
||||
"require": {
|
||||
"laravel/framework": "^12.0",
|
||||
@@ -605,7 +605,7 @@
|
||||
}
|
||||
},
|
||||
"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",
|
||||
|
||||
+9
-9
@@ -1,31 +1,31 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import laravel from 'laravel-vite-plugin';
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
import { defineConfig } from "vite";
|
||||
import laravel from "laravel-vite-plugin";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
// Target browsers that support ES modules natively (Chrome 89+, Firefox 89+,
|
||||
// Safari 15+, Edge 89+). Eliminates legacy polyfills flagged by PageSpeed.
|
||||
target: ['es2022', 'chrome89', 'firefox89', 'safari15', 'edge89'],
|
||||
target: ["es2022", "chrome89", "firefox89", "safari15", "edge89"],
|
||||
},
|
||||
plugins: [
|
||||
laravel({
|
||||
input: ['resources/css/app.css', 'resources/js/app.js'],
|
||||
input: ["resources/css/app.css", "resources/js/app.js"],
|
||||
refresh: true,
|
||||
}),
|
||||
tailwindcss(),
|
||||
],
|
||||
server: {
|
||||
host: '0.0.0.0',
|
||||
port: 5173,
|
||||
host: "0.0.0.0",
|
||||
port: 5174,
|
||||
strictPort: true,
|
||||
cors: true,
|
||||
hmr: {
|
||||
host: 'localhost',
|
||||
host: "localhost",
|
||||
clientPort: process.env.VITE_PORT || 5173,
|
||||
},
|
||||
watch: {
|
||||
ignored: ['**/storage/framework/views/**'],
|
||||
ignored: ["**/storage/framework/views/**"],
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user