commit
a50dea8095
|
@ -0,0 +1,8 @@
|
|||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteBase /primevue/
|
||||
RewriteRule ^primevue/index\.php$ - [L]
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule . /primevue/index.php [L]
|
||||
</IfModule>
|
|
@ -1,6 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<base href="<%= BASE_URL %>">
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-93461466-1"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import {createRouter, createWebHashHistory} from 'vue-router'
|
||||
import {createRouter, createWebHistory} from 'vue-router';
|
||||
import Home from '../Home.vue';
|
||||
import App from '../App.vue';
|
||||
|
||||
|
@ -838,7 +838,7 @@ const routes = [
|
|||
];
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
history: createWebHistory(process.env.BASE_URL),
|
||||
routes,
|
||||
scrollBehavior (to, from, savedPosition) {
|
||||
if (savedPosition)
|
||||
|
|
Loading…
Reference in New Issue