mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-02 03:57:37 +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',
|
|
],
|
|
})
|
|
}
|