-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
153 lines (136 loc) · 4 KB
/
vite.config.js
File metadata and controls
153 lines (136 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import { cpSync, writeFileSync } from 'node:fs'
import { createRequire } from 'node:module'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import { NodePackageImporter } from 'sass-embedded'
import { defineConfig } from 'vite'
const require = createRequire(import.meta.url)
const dirname = path.dirname(fileURLToPath(import.meta.url))
const govukFrontendPath = path.dirname(
require.resolve('govuk-frontend/package.json')
)
function copyGovukAssetsPlugin() {
const assetsSource = path.join(govukFrontendPath, 'dist/govuk/assets')
const assetsDestination = path.join(dirname, '.public/assets')
return {
name: 'copy-govuk-assets',
closeBundle() {
cpSync(assetsSource, assetsDestination, {
force: true,
recursive: true
})
}
}
}
function flatManifestPlugin() {
return {
name: 'flat-assets-manifest',
writeBundle(_outputOptions, bundle) {
const manifest = {}
const applicationChunk = Object.values(bundle).find(
(chunk) =>
chunk.type === 'chunk' &&
chunk.isEntry &&
chunk.name === 'application'
)
for (const chunk of Object.values(bundle)) {
if (chunk.type === 'chunk' && chunk.isEntry) {
manifest[`${chunk.name}.js`] = chunk.fileName
}
}
const applicationCss = applicationChunk?.viteMetadata?.importedCss
? [...applicationChunk.viteMetadata.importedCss][0]
: null
if (applicationCss) {
manifest['stylesheets/application.scss'] = applicationCss
}
writeFileSync(
path.join(dirname, '.public/assets-manifest.json'),
JSON.stringify(manifest, null, 2)
)
}
}
}
function redocNullShimPlugin() {
const shimId = '\0redoc-null-shim'
return {
name: 'redoc-null-shim',
resolveId(id) {
if (id === 'null') {
return shimId
}
},
load(id) {
if (id === shimId) {
return 'export default {}'
}
}
}
}
export default defineConfig(({ mode }) => {
const isProduction = mode === 'production'
return {
build: {
cssMinify: false,
emptyOutDir: true,
manifest: false,
minify: isProduction,
outDir: '.public',
rollupOptions: {
input: {
application: path.resolve(
dirname,
'src/client/javascripts/application.js'
),
redoc: path.resolve(dirname, 'src/client/javascripts/redoc.js')
},
output: {
assetFileNames(assetInfo) {
const name = assetInfo.names?.[0] ?? assetInfo.name ?? ''
const extname = path.extname(name).toLowerCase()
if (extname === '.css') {
return isProduction
? 'stylesheets/[name].[hash:7].min[extname]'
: 'stylesheets/[name][extname]'
}
if (/\.(woff2?|eot|ttf|otf)$/i.test(name)) {
return 'assets/fonts/[name][extname]'
}
if (/\.(png|svg|jpe?g|gif|ico)$/i.test(name)) {
return 'assets/images/[name][extname]'
}
return 'assets/[name][extname]'
},
chunkFileNames: isProduction
? 'javascripts/[name].[hash:7].min.js'
: 'javascripts/[name].js',
entryFileNames: isProduction
? 'javascripts/[name].[hash:7].min.js'
: 'javascripts/[name].js'
}
},
sourcemap: isProduction,
watch: mode === 'development' ? {} : null
},
css: {
preprocessorOptions: {
scss: {
importers: [new NodePackageImporter()],
loadPaths: [
path.join(dirname, 'src/client/stylesheets'),
path.join(dirname, 'src/server/common/components'),
path.join(dirname, 'src/server/common/templates/partials')
],
quietDeps: true,
style: 'expanded'
}
}
},
plugins: [
redocNullShimPlugin(),
copyGovukAssetsPlugin(),
flatManifestPlugin()
],
publicDir: false
}
})