mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-17 17:26:38 +08:00
11 lines
180 B
TypeScript
Executable File
11 lines
180 B
TypeScript
Executable File
import Pages from 'vite-plugin-pages'
|
|
|
|
export default function createPages() {
|
|
return Pages({
|
|
dirs: 'src/views',
|
|
exclude: [
|
|
'**/components/**/*.vue',
|
|
],
|
|
})
|
|
}
|