(config)
| 53 | isDev = env.command === "serve"; |
| 54 | }, |
| 55 | configResolved(config) { |
| 56 | root = config.root; |
| 57 | |
| 58 | clientOutDir = pathWithRoot( |
| 59 | config.environments.client.build.outDir, |
| 60 | config.root, |
| 61 | ); |
| 62 | serverOutDir = pathWithRoot( |
| 63 | config.environments.ssr.build.outDir, |
| 64 | config.root, |
| 65 | ); |
| 66 | |
| 67 | options.islandSpecifiers.forEach((name, spec) => { |
| 68 | islands.set(spec, { name, chunk: null }); |
| 69 | islandSpecByName.set(name, spec); |
| 70 | // islandsByFile.add(spec); |
| 71 | }); |
| 72 | }, |
| 73 | configureServer(viteServer) { |
| 74 | server = viteServer; |
| 75 |
nothing calls this directly
no test coverage detected