Skip to content

Commit

Permalink
test: avoid hashes in minimal build
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Mar 12, 2024
1 parent 3ff9020 commit 293e748
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/fixtures/minimal/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ export default defineNuxtConfig({
experimental: {
externalVue: !testWithInlineVue
},
$production: {
vite: {
$client: {
build: {
rollupOptions: {
output: {
chunkFileNames: '_nuxt/[name].js',
entryFileNames: '_nuxt/[name].js'
}
}
}
}
}
},
buildDir: testWithInlineVue ? '.nuxt-inline' : '.nuxt',
nitro: {
output: { dir: fileURLToPath(new URL(testWithInlineVue ? './.output-inline' : './.output', import.meta.url)) }
Expand Down

0 comments on commit 293e748

Please sign in to comment.