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