Open Mi-liu opened 2 weeks ago
Can there be a configuration that controls absolute or relative? This is very helpful when using UI libraries and flat routing
// This is now { path: '/test', children:[{ path: 'demo' }] }
I hope it's the same as vite plugin pages
// vite.config.ts plugins: [ VueRouter({ // Type: 'absolute' | 'relative' importPath: 'absolute', }) ] // to { path: '/test', children:[{ path: '/test/demo' }] }
What is the use case?
Can there be a configuration that controls absolute or relative? This is very helpful when using UI libraries and flat routing
I hope it's the same as vite plugin pages