1.7 KiB
1.7 KiB
title | order |
---|---|
Files and folder structure | 110 |
Inside out tutorial
folder, the design/src
folder holds the source code for
the new pattern we will create.
You can safely ignore all other files and folders, as they are part of the FreeSewing development environment. So feel free to skip ahead to Your first part.
Notes
If you'd like to learn about those other files and folders, here's what they do:
folders
design
: Holds the source code for your designlab
: Holds React hooks and components specific to the development environmentnode_modules
: Holds installed dependenciespages
: Holds NextJS client-side routes, aka pagespublic
: Holds pregenerated translation filesshared
: Holds files from FreeSewing's shared codebase for frontend development
files
next.config.mjs
: The NextJS configuration filenext-i18next.config.js
: The configuration file for [next-i18next][i81n] which handles translation within NextJSpackage.json
: Every NodeJS project has a package.json file which holds important metadata and lists dependenciespackage-lock.json
: This lockfile will only exist if you use the npm package managerpostcss.config.js
: Configuration file for PostCSS, a tool to transform CSS with Javascripttailwind.config.js
: Configuration file for the TailwindCSS frameworkyarn.lock
: This lockfile will only exist if you use the yarn package manager