mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
fix(vite): use rollup replace plugin for typeof
optimisations (#23903)
This commit is contained in:
parent
9288e6fe1d
commit
86693c1005
@ -5,6 +5,7 @@ import viteJsxPlugin from '@vitejs/plugin-vue-jsx'
|
|||||||
import { logger, resolvePath, tryResolveModule } from '@nuxt/kit'
|
import { logger, resolvePath, tryResolveModule } from '@nuxt/kit'
|
||||||
import { joinURL, withTrailingSlash, withoutLeadingSlash } from 'ufo'
|
import { joinURL, withTrailingSlash, withoutLeadingSlash } from 'ufo'
|
||||||
import type { ViteConfig } from '@nuxt/schema'
|
import type { ViteConfig } from '@nuxt/schema'
|
||||||
|
import replace from '@rollup/plugin-replace'
|
||||||
import type { ViteBuildContext } from './vite'
|
import type { ViteBuildContext } from './vite'
|
||||||
import { createViteLogger } from './utils/logger'
|
import { createViteLogger } from './utils/logger'
|
||||||
import { initViteNodeServer } from './vite-node'
|
import { initViteNodeServer } from './vite-node'
|
||||||
@ -43,12 +44,7 @@ export async function buildServer (ctx: ViteBuildContext) {
|
|||||||
'process.browser': false,
|
'process.browser': false,
|
||||||
'import.meta.server': true,
|
'import.meta.server': true,
|
||||||
'import.meta.client': false,
|
'import.meta.client': false,
|
||||||
'import.meta.browser': false,
|
'import.meta.browser': false
|
||||||
'typeof window': '"undefined"',
|
|
||||||
'typeof document': '"undefined"',
|
|
||||||
'typeof navigator': '"undefined"',
|
|
||||||
'typeof location': '"undefined"',
|
|
||||||
'typeof XMLHttpRequest': '"undefined"'
|
|
||||||
},
|
},
|
||||||
optimizeDeps: {
|
optimizeDeps: {
|
||||||
entries: ctx.nuxt.options.ssr ? [ctx.entry] : []
|
entries: ctx.nuxt.options.ssr ? [ctx.entry] : []
|
||||||
@ -100,7 +96,18 @@ export async function buildServer (ctx: ViteBuildContext) {
|
|||||||
preTransformRequests: false,
|
preTransformRequests: false,
|
||||||
hmr: false
|
hmr: false
|
||||||
},
|
},
|
||||||
plugins: []
|
plugins: [
|
||||||
|
replace({
|
||||||
|
values: {
|
||||||
|
'typeof window': '"undefined"',
|
||||||
|
'typeof document': '"undefined"',
|
||||||
|
'typeof navigator': '"undefined"',
|
||||||
|
'typeof location': '"undefined"',
|
||||||
|
'typeof XMLHttpRequest': '"undefined"'
|
||||||
|
},
|
||||||
|
preventAssignment: true
|
||||||
|
})
|
||||||
|
]
|
||||||
} satisfies vite.InlineConfig, ctx.nuxt.options.vite.$server || {}))
|
} satisfies vite.InlineConfig, ctx.nuxt.options.vite.$server || {}))
|
||||||
|
|
||||||
if (!ctx.nuxt.options.dev) {
|
if (!ctx.nuxt.options.dev) {
|
||||||
|
Loading…
Reference in New Issue
Block a user