-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
55 lines (52 loc) · 1.53 KB
/
vite.config.ts
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
import { defineConfig } from "vite";
import marko from "@marko/run/vite";
import staticAdapter from "@marko/run-adapter-static";
import figmaAdapter from "./src/tools/figmaAdapter";
import inlineAll from "./src/tools/vite-inline-all";
import { viteSingleFile } from "vite-plugin-singlefile";
export default defineConfig({
build: {
cssCodeSplit: false,
rollupOptions: {
output: {
// inlineDynamicImports: false,
}
},
},
esbuild: {
// format: 'iife',
},
plugins: [
marko({
// adapter: staticAdapter(),
adapter: figmaAdapter(),
}),
// inlineAll(),
// viteSingleFile({
// deleteInlinedFiles: false,
// }),
// {
// name: 'wrap-in-iife',
// generateBundle(outputOptions, bundle) {
// console.log("outputOptions", outputOptions);
// console.log("bundle", Object.keys(bundle));
// const wrap = {
// before: (fileName) => `
// var exports = {};
// ((exports, modules) => {`,
// after: (fileName) => `
// })(exports, window.modules);
// modules["${fileName}"] = exports;`
// };
// Object.keys(bundle).forEach((fileName) => {
// console.log('wrapping', fileName);
// const file = bundle[fileName]
// const ext = fileName.slice(fileName.lastIndexOf('.'))
// if ( ['.js', '.mjs'].includes(ext) && 'code' in file) {
// file.code = `(() => {\n${file.code}})()`
// }
// })
// }
// }
],
});