splitting nginx configuration into prod and local

This commit is contained in:
F4ilji
2025-04-17 21:50:21 +05:00
parent 21c4b7c528
commit 1399e2b8de
4 changed files with 101 additions and 9 deletions
@@ -37,14 +37,6 @@ export default {
}
},
methods: {
textLimit(text, symbols) {
if (text.length > symbols) {
let LimitedText
LimitedText = text.substring(0, symbols)
return LimitedText + "..."
}
return text
},
isSameRoute(route) {
if (this.$page.props.ziggy.location === this.$page.props.ziggy.url + '/' + route) {
return true