This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::get('/{vue_capture?}', function () { | |
return view('your-main-blade'); | |
})->where('vue_capture', '[\/\w\.-]*'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
outline: 0; | |
font-size: 100%; | |
vertical-align: baseline; | |
background: transparent; | |
box-sizing: border-box; | |
overflow:auto; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ros { | |
opacity: 0; | |
transform: translateY(60px) translateZ(0); | |
transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1); | |
} | |
.ros--left { | |
transform: translateX(-60px) translateZ(0); | |
} | |
.ros--right { | |
transform: translateX(60px) translateZ(0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { PrismaClient } from "@prisma/client"; | |
let db = new PrismaClient(); | |
declare global { | |
var __db__: PrismaClient | undefined; | |
} | |
if (process.env.NODE_ENV === "production") { | |
db = new PrismaClient(); |