string'./src'By default, Modern.js scans the src directory to identify page entries. You can customize the directory used for identifying page entries with this option.
For example, with the following configuration and directory structure:
export default defineConfig({
source: {
entriesDir: './src/pages',
},
});.
└── src
└── pages
├── a
│ └── App.tsx
└── b
└── App.tsxModern.js will generate the build entries a and b based on the ./src/pages directory structure. The result is as follows:
const entry = {
a: './src/pages/a/App.tsx',
b: './src/pages/b/App.tsx',
};