vite#resolveConfig JavaScript Examples

The following examples show how to use vite#resolveConfig. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: config.js    From vitedge with MIT License 6 votes vote down vote up
export async function getProjectInfo(mode) {
  const config = await resolveConfig(
    {},
    'build',
    mode || process.env.MODE || process.env.NODE_ENV
  )

  const configFileName = config.configFile || ''

  return {
    config,
    rootDir: config.root,
    isTS: configFileName.endsWith('.ts'),
    isMJS: configFileName.endsWith('.mjs'),
  }
}