no message

This commit is contained in:
hellcat 2026-02-12 13:50:17 +08:00
parent 1edb5b9b1f
commit 578920c9b2
2 changed files with 45 additions and 0 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ Homestead.json
Homestead.yaml
Thumbs.db
!/_env/*
./vite.config.js

44
_env/vite.config.js Executable file
View File

@ -0,0 +1,44 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
'resource/cfn/css/app.css',
'resource/cvf/css/app.css',
'resource/vcf/css/app.css',
],
refresh: true,
}),
tailwindcss(),
],
server: {
https: false, // 关掉!
host: '127.0.0.1',
port: 5173,
strictPort: true,
hmr: {
protocol: 'ws', // 走普通的 ws别 wss 了
host: '127.0.0.1',
},
},
resolve: {
alias: {
'@fonts': '/resources/fonts',
},
},
// build: {
// rollupOptions: {
// external: ['jquery'],
// output: {
// globals: {
// jquery: '$',
// },
// },
// },
// },tru
});