no message
This commit is contained in:
parent
1edb5b9b1f
commit
578920c9b2
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,3 +22,4 @@ Homestead.json
|
||||
Homestead.yaml
|
||||
Thumbs.db
|
||||
!/_env/*
|
||||
./vite.config.js
|
||||
|
||||
44
_env/vite.config.js
Executable file
44
_env/vite.config.js
Executable 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
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user