77 likes
·
7.8K reads
7 comments
·Aug 8, 2021
Aug 8, 2021
Great overview. Thanks!
1
·
·Sep 10, 2021
Sep 10, 2021
Useful and practical guide. I just learnt how to use path aliases *)
1
·
·Aug 6, 2021
Aug 6, 2021
Very interesting article. Next.js is awesome. :)
Btw, use ```js in your code blocks for the syntax highlighting to work.
·
·1 reply
Author
·Aug 6, 2021
Good call, I was using ```{js} for some reason!
·
·Aug 15, 2021
Aug 15, 2021
Thanks, this was very helpful! The only additional thing I had to do was to add a fileMock.js to stub static assets, containing the following line:
module.exports = "/test-file-stub";
And updating the jest config:
moduleNameMapper: {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "<rootDir>/__mocks__/styleMock.js",
"^pages/(.*)$": "<rootDir>/pages/$1",
"^components/(.*)$": "<rootDir>/components/$1",
"^modules/(.*)$": "<rootDir>/modules/$1",
},
·
·1 reply
Author
·Sep 2, 2021
That's a good call! If you'd like to add it to the repo via a PR as well it would be wonderful!
·
·Mar 26, 2022
Mar 26, 2022
Thank you Antonio, a very good document, i've been using antd but you motivated me to take a look to tailwind.
·