[Fix] Delete vite.config.js

This commit is contained in:
1day2die 2023-01-30 11:20:01 +01:00
parent e1dbbb21ee
commit 8fa42c9f30

30
vite.config.js vendored
View file

@ -1,30 +0,0 @@
import { defineConfig } from "vite";
import laravel from "laravel-vite-plugin";
export default defineConfig({
plugins: [
laravel({
input: "resources/sass/app.scss"
}),
{
name: "blade",
handleHotUpdate({ file, server }) {
if (file.endsWith(".blade.php")) {
server.ws.send({
type: "full-reload",
path: "*",
});
}
},
},
],
resolve: {
alias: {
'@': '/resources/js/'
}
},
});