1. 01 8月, 2019 9 次提交
  2. 31 7月, 2019 5 次提交
  3. 30 7月, 2019 6 次提交
  4. 29 7月, 2019 7 次提交
  5. 28 7月, 2019 3 次提交
  6. 27 7月, 2019 7 次提交
  7. 26 7月, 2019 3 次提交
    • L
      Fixes problem with API and wrong regex (#8126) · cc6fe5fd
      Lukáš Huvar 提交于
      * Fixes regex for client bundel. Fixes #8115
      
      * Add test
      
      * Update test/integration/api-support/test/index.test.js
      Co-Authored-By: NTim Neutkens <tim@timneutkens.nl>
      
      * Update test/integration/api-support/test/index.test.js
      Co-Authored-By: NTim Neutkens <tim@timneutkens.nl>
      cc6fe5fd
    • L
      Auth example with api routes (#8118) · a2b2a2a3
      Luis Fernando Alvarez D 提交于
      a2b2a2a3
    • O
      Fix onError prop-type warning in Link (#8021) · 71f9288a
      Olivier Tassinari 提交于
      The warning
      
      > Warning: Failed prop type: Link: unknown props found: onError
      
      can happen in this case:
      
      ```tsx
      import * as React from 'react';
      import NextLink, { LinkProps as NextLinkProps } from 'next/link';
      
      type NextComposedProps = React.AnchorHTMLAttributes<HTMLAnchorElement> & NextLinkProps;
      
      const NextComposed = React.forwardRef<HTMLAnchorElement, NextComposedProps>((props, ref) => {
        const { as, href, replace, scroll, passHref, shallow, prefetch, onError, ...other } = props;
      
        return (
          <NextLink
            href={href}
            prefetch={prefetch}
            as={as}
            replace={replace}
            scroll={scroll}
            shallow={shallow}
            passHref={passHref}
            onError={onError}
          >
            <a ref={ref} {...other} />
          </NextLink>
        );
      });
      ```
      
      *Taken from Material-UI Next.js integration example*
      71f9288a