forked from okfde/froide-theme
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
vite.config.js
100 lines (97 loc) · 3.84 KB
/
vite.config.js
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
import { resolve } from 'path'
import { defineConfig } from 'vite'
import devManifest from 'vite-plugin-dev-manifest'
import autoprefixer from 'autoprefixer'
import vue from '@vitejs/plugin-vue'
// eslint-disable-next-line no-undef
const outputDir = resolve(__dirname, 'build')
// https://vitejs.dev/config/
export default defineConfig({
// eslint-disable-next-line no-undef
base: process.env.ASSET_PATH || '/static/',
publicDir: false,
resolve: {
alias: {
// eslint-disable-next-line no-undef
'~froide': resolve(__dirname, 'node_modules/froide')
},
dedupe: ['bootstrap', 'vue', 'pdfjs-dist'],
extensions: ['.mjs', '.js', '.ts', '.vue', '.json']
},
build: {
manifest: true,
emptyOutDir: true,
outDir: outputDir,
sourcemap: true,
rollupOptions: {
input: {
// audio_player: './frontend/javascript/audio-player.ts',
// bookpub: './frontend/javascript/bookpub.js',
campaign_list:
'node_modules/froide_campaign/frontend/javascript/list.js',
campaign_map: 'node_modules/froide_campaign/frontend/javascript/map.js',
campaign_questionaire:
'node_modules/froide_campaign/frontend/javascript/questionaire.js',
document: 'node_modules/froide/frontend/javascript/document.js',
docupload: 'node_modules/froide/frontend/javascript/docupload.js',
exam_curriculum:
'node_modules/froide_exam/frontend/javascript/curriculum.js',
// fds_cms: './frontend/javascript/fds_cms.js',
fileuploader: 'node_modules/froide/frontend/javascript/fileuploader.js',
filingcabinet:
'node_modules/@okfde/filingcabinet/frontend/javascript/filingcabinet.js',
food: 'node_modules/froide_food/frontend/javascript/food.js',
foodreport: 'node_modules/froide_food/frontend/javascript/report.js',
geomatch: 'node_modules/froide/frontend/javascript/geomatch.js',
lawsuits_table:
'node_modules/froide_legalaction/frontend/javascript/table.js',
legal_decisions_listfilter:
'node_modules/froide_legalaction/frontend/javascript/listFilter.js',
main: './frontend/javascript/main.ts',
makerequest: 'node_modules/froide/frontend/javascript/makerequest.js',
messageredaction:
'node_modules/froide/frontend/javascript/messageredaction.js',
moderation: 'node_modules/froide/frontend/javascript/moderation.js',
payment: 'node_modules/froide_payment/frontend/javascript/payment.ts',
proofupload: 'node_modules/froide/frontend/javascript/proofupload.js',
publicbody: 'node_modules/froide/frontend/javascript/publicbody.js',
publicbodyupload:
'node_modules/froide/frontend/javascript/publicbodyupload.js',
redact: 'node_modules/froide/frontend/javascript/redact.js',
request: 'node_modules/froide/frontend/javascript/request.ts',
tagautocomplete:
'node_modules/froide/frontend/javascript/tagautocomplete.ts',
// vegacharts: './frontend/javascript/vegacharts.js'
},
output: {
sourcemap: true,
entryFileNames: '[name].js',
chunkFileNames: 'js/[name]-[hash].js',
assetFileNames: (assetInfo) => {
if (assetInfo.name.endsWith('.css')) {
return 'css/[name][extname]'
} else if (
assetInfo.name.match(/(\.(woff2?|eot|ttf|otf)|font\.svg)(\?.*)?$/)
) {
return 'fonts/[name][extname]'
} else if (assetInfo.name.match(/\.(jpg|png|svg)$/)) {
return 'img/[name][extname]'
}
console.log('assetInfo', assetInfo)
return 'js/[name][extname]'
}
}
}
},
server: {
port: 5173,
origin: 'http://127.0.0.1:5173',
fs: { allow: ['..'] }
},
plugins: [vue(), devManifest()],
css: {
postcss: {
plugins: [autoprefixer]
}
}
})