1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-22 14:22:53 +02:00

prettier config, format files

This commit is contained in:
Hakim El Hattab
2024-11-05 19:52:41 +01:00
parent 94a86f466d
commit faf8fb9c58
37 changed files with 1965 additions and 1836 deletions

View File

@@ -1,5 +1,5 @@
import { resolve } from 'path';
import { defineConfig } from 'vite'
import { defineConfig } from 'vite';
import { appendExtension } from '../../vite.config.ts';
// Once Vite supports multiple entries for plugins, this build can
@@ -15,8 +15,8 @@ export default defineConfig({
'plugin/markdown': resolve(__dirname, 'index.js'),
},
name: 'RevealMarkdown',
fileName: appendExtension
}
fileName: appendExtension,
},
},
plugins: [],
})
});

View File

@@ -1,5 +1,5 @@
import { resolve } from 'path';
import { defineConfig } from 'vite'
import { defineConfig } from 'vite';
import { appendExtension } from '../../vite.config.ts';
// Once Vite supports multiple entries for plugins, this build can
@@ -15,8 +15,8 @@ export default defineConfig({
'plugin/math': resolve(__dirname, 'index.js'),
},
name: 'RevealMath',
fileName: appendExtension
}
fileName: appendExtension,
},
},
plugins: [],
})
});