update router conf
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Simon Vieille 2023-02-24 22:15:32 +01:00
parent 78aec2bbab
commit f608dfc12e
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import { createRouter, createWebHashHistory } from 'vue-router'
import Home from './page/Home.vue'
import About from './page/About.vue'
const APP_BASE_URL = '/'
// const APP_BASE_URL = '/'
const routes = [
{
@ -25,7 +25,6 @@ const routes = [
const router = createRouter({
history: createWebHashHistory(),
base: APP_BASE_URL,
routes,
});

View file

@ -1,6 +1,6 @@
const Encore = require('@symfony/webpack-encore')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const APP_BASE_URL = '/'
// const APP_BASE_URL = '/'
Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev')