65 lines
2.4 KiB
JavaScript
65 lines
2.4 KiB
JavaScript
const Ziggy = {
|
|
url: "https://FutureWalker.com",
|
|
port: null,
|
|
defaults: {},
|
|
routes: {
|
|
"debugbar.openhandler": { uri: "_debugbar/open", methods: ["GET", "HEAD"] },
|
|
"debugbar.clockwork": {
|
|
uri: "_debugbar/clockwork/{id}",
|
|
methods: ["GET", "HEAD"],
|
|
},
|
|
"debugbar.assets.css": {
|
|
uri: "_debugbar/assets/stylesheets",
|
|
methods: ["GET", "HEAD"],
|
|
},
|
|
"debugbar.assets.js": {
|
|
uri: "_debugbar/assets/javascript",
|
|
methods: ["GET", "HEAD"],
|
|
},
|
|
"debugbar.cache.delete": {
|
|
uri: "_debugbar/cache/{key}/{tags?}",
|
|
methods: ["DELETE"],
|
|
},
|
|
"sanctum.csrf-cookie": {
|
|
uri: "sanctum/csrf-cookie",
|
|
methods: ["GET", "HEAD"],
|
|
},
|
|
"laravelpwa.manifest": { uri: "manifest.json", methods: ["GET", "HEAD"] },
|
|
"laravelpwa.": { uri: "offline", methods: ["GET", "HEAD"] },
|
|
"ignition.healthCheck": {
|
|
uri: "_ignition/health-check",
|
|
methods: ["GET", "HEAD"],
|
|
},
|
|
"ignition.executeSolution": {
|
|
uri: "_ignition/execute-solution",
|
|
methods: ["POST"],
|
|
},
|
|
"ignition.updateConfig": {
|
|
uri: "_ignition/update-config",
|
|
methods: ["POST"],
|
|
},
|
|
"feeds.main": { uri: "feeds/posts-feed", methods: ["GET", "HEAD"] },
|
|
"front.home": { uri: "/", methods: ["GET", "HEAD"] },
|
|
"front.terms": { uri: "terms", methods: ["GET", "HEAD"] },
|
|
"front.privacy": { uri: "privacy", methods: ["GET", "HEAD"] },
|
|
"front.disclaimer": { uri: "disclaimer", methods: ["GET", "HEAD"] },
|
|
"front.all": { uri: "news", methods: ["GET", "HEAD"] },
|
|
"front.post.redirect": { uri: "news/{slug}", methods: ["GET", "HEAD"] },
|
|
"front.post": { uri: "{category_slug}/{slug}", methods: ["GET", "HEAD"] },
|
|
"front.category": {
|
|
uri: "{category_slug}",
|
|
methods: ["GET", "HEAD"],
|
|
wheres: {
|
|
category_slug:
|
|
"^(automotive|business|trading|information-technology|marketing|office|telecommunications|food-drink|collectibles|pets|photography|hobbies-gifts|hunting-fishing|law|politics|home-garden|shopping|fashion-clothing|real-estate|family|wedding|immigration|society|education|languages|health|beauty|psychology|wellness|religion-spirituality|tips-tricks|how-to|holiday|world-festivals|travel|outdoors|computer|phones|gadgets|technology|social-networks|ai)$",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
if (typeof window !== "undefined" && typeof window.Ziggy !== "undefined") {
|
|
Object.assign(Ziggy.routes, window.Ziggy.routes);
|
|
}
|
|
|
|
export { Ziggy };
|