mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 13:45:18 +00:00
fix(vite): support multiple rollup entries (#19842)
This commit is contained in:
parent
8c11498a57
commit
4430c664e8
@ -57,7 +57,7 @@ export async function buildClient (ctx: ViteBuildContext) {
|
||||
manifest: true,
|
||||
outDir: resolve(ctx.nuxt.options.buildDir, 'dist/client'),
|
||||
rollupOptions: {
|
||||
input: ctx.entry
|
||||
input: { entry: ctx.entry }
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
@ -110,7 +110,7 @@ export async function buildClient (ctx: ViteBuildContext) {
|
||||
port: hmrPortDefault,
|
||||
ports: Array.from({ length: 20 }, (_, i) => hmrPortDefault + 1 + i)
|
||||
})
|
||||
clientConfig.server = defu(clientConfig.server, <ServerOptions>{
|
||||
clientConfig.server = defu(clientConfig.server, <ServerOptions> {
|
||||
https: ctx.nuxt.options.devServer.https,
|
||||
hmr: {
|
||||
protocol: ctx.nuxt.options.devServer.https ? 'wss' : 'ws',
|
||||
|
@ -87,10 +87,10 @@ export async function buildServer (ctx: ViteBuildContext) {
|
||||
outDir: resolve(ctx.nuxt.options.buildDir, 'dist/server'),
|
||||
ssr: true,
|
||||
rollupOptions: {
|
||||
input: entry,
|
||||
input: { server: entry },
|
||||
external: ['#internal/nitro', ...ctx.nuxt.options.experimental.externalVue ? ['vue', 'vue-router'] : []],
|
||||
output: {
|
||||
entryFileNames: 'server.mjs',
|
||||
entryFileNames: '[name].mjs',
|
||||
format: 'module',
|
||||
generatedCode: {
|
||||
constBindings: true
|
||||
|
Loading…
Reference in New Issue
Block a user