vite.config.js 186 B

1234567891011
  1. // vite.config.js
  2. const path = require('path')
  3. module.exports = {
  4. build: {
  5. lib: {
  6. entry: path.resolve(__dirname, 'index.js'),
  7. name: 'rehype-prism-plus',
  8. },
  9. },
  10. }