Code Monkey home page Code Monkey logo

Comments (5)

csr632 avatar csr632 commented on July 19, 2024

@husayt Implemented in https://github.com/vitejs/vite-plugin-react-pages/pull/160/files and published as [email protected]. You can try it out :)

from vite-plugin-react-pages.

husayt avatar husayt commented on July 19, 2024

Thank you very much. This is really exciting. Can you please, provide an example of config?

from vite-plugin-react-pages.

husayt avatar husayt commented on July 19, 2024

this is what I ended up using in viteconfig

export default defineConfig({
  plugins: [
    react(),
    pages({
      pagesDir: path.join(__dirname, 'pages'),
      /** user can add/remove remark plugins passed to mdx */
      modifyRemarkPlugins: [
        {
          name: 'remark-emoji',
          createPlugin: () => import('remark-emoji').then((m) => m.default),
        },
        {
          name: 'remark-mdc',
          createPlugin: () => import('remark-mdc').then((m) => m.default),
        },
        {
          name: 'remark-mdc',
          createPlugin: () => import('remark-mdc').then((m) => m.default),
        },
        // {
        //   name: 'remark-rehype',
        //   createPlugin: () => import('remark-rehype').then((m) => m.default),
        // },
      ],
      /** user can add/remove rehype plugins passed to mdx */
      modifyRehypePlugins: [
        {
          name: 'rehype-external-links',
          createPlugin: () =>
            import('rehype-external-links').then((m) => m.default),
        },

        {
          name: 'rehype-raw',
          createPlugin: () => import('rehype-raw').then((m) => m.default),
        },
        {
          name: 'rehype-sort-attribute-values',
          createPlugin: () =>
            import('rehype-sort-attribute-values').then((m) => m.default),
        },
        {
          name: 'rehype-sort-attributes',
          createPlugin: () =>
            import('rehype-sort-attributes').then((m) => m.default),
        },
      ],
    }),
  ],
})

from vite-plugin-react-pages.

csr632 avatar csr632 commented on July 19, 2024

Example:

export default defineConfig({
  plugins: [
    react(),
    pages({
      pagesDir: path.join(__dirname, 'pages'),
      modifyRemarkPlugins(original) {
        return [
          ...original,
          {
            name: 'remark-emoji',
            createPlugin: () => import('remark-emoji').then((m) => m.default),
          }
        ]
      },
      modifyRehypePlugins(original) {
        return [
          ...original,
          // add rehype plugins here
        ]
      },
    }),
  ],
})

Full demo:

from vite-plugin-react-pages.

csr632 avatar csr632 commented on July 19, 2024

Landed in [email protected]

from vite-plugin-react-pages.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.