We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2d01f commit db82496Copy full SHA for db82496
docs/nuxt.config.ts
@@ -22,6 +22,12 @@ export default defineNuxtConfig({
22
domain: 'regexp.dev',
23
},
24
hooks: {
25
+ 'vite:extendConfig'(config, { isClient }) {
26
+ if (isClient) {
27
+ // TODO: update when updating to rc7
28
+ config.build.rollupOptions.output.chunkFileNames = '[hash].mjs'
29
+ }
30
+ },
31
'tailwindcss:config'(config) {
32
config.theme.extend.colors.primary = {
33
'50': '#ff46c5',
0 commit comments