mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
first commit
This commit is contained in:
19
vite.config.js
Normal file
19
vite.config.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import laravel from 'laravel-vite-plugin';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
laravel({
|
||||
input: 'resources/js/app.tsx',
|
||||
refresh: true,
|
||||
}),
|
||||
react(),
|
||||
],
|
||||
server: {
|
||||
host: 'nihonbuzz-academy.test',
|
||||
hmr: {
|
||||
host: 'nihonbuzz-academy.test',
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user