mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
f69126e8f4
Co-authored-by: pooya parsa <pyapar@gmail.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
import { resolve } from 'path'
|
|
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
alias: {
|
|
'#app': resolve('./packages/nuxt3/src/app/index.ts'),
|
|
'@nuxt/test-utils': resolve('./packages/test-utils/src/index.ts')
|
|
},
|
|
esbuild: {
|
|
tsconfigRaw: '{}'
|
|
}
|
|
})
|